% 定义参数 t,从 0 到 10π,步长为 π/50
t = 0:pi/50:10*pi;
% 使用 plot3 绘制三维曲线
% sin(t) 作为 x 坐标,cos(t) 作为 y 坐标,t 作为 z 坐标
plot3(sin(t), cos(t), t);
% 设置 x 轴标签为 'sin(t)'
xlabel('sin(t)');
% 设置 y 轴标签为 'cos(t)'
ylabel('cos(t)');
% 设置 z 轴标签为 't'
zlabel('t');
% 开启网格,以便更清晰地查看图形的细节
grid on;
% 设置坐标轴比例为正方形,使得 x、y、z 轴的单位长度相等
axis square;
暂无评论