如何用matlab绘制三角函数曲线:y=a*sin(b*x+c),其中x,y是变量。

2025-01-19 16:57:15
推荐回答(1个)
回答1:

a=1;
b=2;
c=3;
x=0.01:0.01:100;
y=a*sin(b*x+c);
plot(x,y);