x=sin(at),y=cos(at),z=kt
其中a,k是常数,而t为参变量。
给个matlab的绘图方法:
>> t=0:0.01:30;
>> x=sin(t);y=cos(t);z=2.*t;
>> plot3(x,y,z);
匿名回答于2024-05-30 02:25:16