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)

比较简单,就不多说了。

posted @ 2025-01-20 12:05  叕叒双又  阅读(18)  评论(0)    收藏  举报