i am not getting correct output for this sawtooth plot
2 次查看(过去 30 天)
显示 更早的评论
I have to plot sawtooth with amplitude of 4 and freq(fs) of 30
I m solving like sine wave. kindly find mistakes..
t = 0:5:30;
a = 4;
x = a*sawtooth(t);
plot(t,x)
axis([0 30 0 4])
7 个评论
采纳的回答
madhan ravi
2020-5-31
T = 6;
Fs = 1e3;
dt = 1/Fs;
t = 0:dt:T-dt;
a = 4;
x = a*sawtooth(2*pi*t);
t = t*5;
plot(t,x)
grid on
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!