用matlab画x*sin(x)的图

问题描述:

用matlab画x*sin(x)的图

clear all;clc;y=@(x)x.*sin(x);ezplot(y);grid on;--------------------------或者用数值方法(建议使用数值方法)clear all;clc;x=-2*pi:pi/20:2*pi;y=x.*sin(x);plot(x,y);grid on;