how to plot triangular waveform?
Show older comments
can anyone help me to plot following triangular waveform?
Answers (3)
Vinay
on 28 Nov 2023
1 vote
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
on 28 Nov 2023
1 vote

Star Strider
on 6 May 2020
0 votes
Categories
Find more on Waveform Generation in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!