How do I plot three waves (sin, triangle, and square) with a Vp-p of 4V and the function generator set at 1KHz
3 次查看(过去 30 天)
显示 更早的评论
回答(1 个)
Naman Chaturvedi
2018-9-7
If its MATLAB you want to plot it in,
f=1000;
t=0:0.00001:0.002;
s=2*sin(2*pi*f*t);
tr=2*sawtooth(2*pi*f*t);
sq=2*square(2*pi*f*t);
plot(t,s);hold on;plot(t,sq);hold on;plot(t,tr);
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Line Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!