Created 星期二 11 一月 2011
看例子总结
小数点位数
longformat goodformat expformat
画图
xplot
>t=-10:0.01:10;
>s=sin(t)/t;
>xplot(t,s);
>s=sin(t)/t;
>xplot(t,s);
>title("sin(t)/t");
fplot
给函数绘图
>fplot("f",a,b) >fplot("f",a,b,n)
f为函数名,或者函数表达式
f3dplot
f3dplot("f",xmin,xmax,ymin,ymax,nx,my)
f3dplot("f")