how to plot triangular waveform?
Ältere Kommentare anzeigen
can anyone help me to plot following triangular waveform?
Antworten (3)
Vinay
am 28 Nov. 2023
1 Stimme
T = 10*(1/50);
fs = 1000;
t = 0:1/fs:T-1/fs;
x = sawtooth(2*pi*50*t);
plot(t,x)
grid on
Vinay
am 28 Nov. 2023
1 Stimme

Star Strider
am 6 Mai 2020
0 Stimmen
Kategorien
Mehr zu Waveform Generation finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!