怎样用matlab画出正弦函数的图像?

问题描述:

怎样用matlab画出正弦函数的图像?
怎样用matlab画出正弦函数y=sin(0.225t+pi/70)的图像?

t = 0:0.1:10
y = sin(0.225*t + pi / 70);
plot(t,y)