matlab plot函数利用

问题描述:

matlab plot函数利用
x
用plot函数做出 y=e sin x 在[0,6]上的图像.
y等于e的x次方乘以sin x
必须用plot

x=0:0.001:6;
plot(x,exp(x).*sin(x));