数值分析的一些常用指令

plot(x , y , 's' )   作曲线图;

t=0:0.01:2*pi;

polar(t, abs(sin(2*t).*cos(2*t)));    作给出表达式的曲线图;

x=-3:0.2:0.3;

bar(x,exp(-x*x));

 

你可能感兴趣的:(plot)