t=(0:0.01:2)*pi; x=sin(t); y=cos(t); z=cos(2*t); plot3(x,y,z,'r-','linewidth',1.5); box on; %打开坐标系边框 legend('三维曲线作图'); 三维曲线绘图 x=0:0.2:1; y=x; [x y]=meshgrid(x,y); plot(x,y,'b+') %这就是所有(x,y)的取值 ,然后计算所有的z=f(x,y)就可以了 利用meshgrid生成网格节点 dd=0.001;n=1+1/dd;…