octave中符号函数做图
syms t syms x syms y syms z x=sin(t) y=cos(t) z=t ezplot3(x,y,z,[0,10*pi],'animate')
带动画的三维图就做好了,
syms t;
ezplot(sin(t)/t)
比较简单,就不多说了。
人就像是被蒙着眼推磨的驴子,生活就像一条鞭子;当鞭子抽到你背上时,你就只能一直往前走,虽然连你也不知道要走到什么时候为止,便一直这么坚持着。
syms t syms x syms y syms z x=sin(t) y=cos(t) z=t ezplot3(x,y,z,[0,10*pi],'animate')
带动画的三维图就做好了,
syms t;
ezplot(sin(t)/t)
比较简单,就不多说了。