3D曲线
函数
plot3 (x, y, z);
范例
螺旋线
theta = 0 : pi/50 : 6*pi; %现在就有50*6 +1 =301 个点
x = cos (theta);
y = sin
3D曲线
函数
plot3 (x, y, z);
范例
螺旋线
theta = 0 : pi/50 : 6*pi; %现在就有50*6 +1 =301 个点
x = cos (theta);
y = sin
599
4260