MATLAB基础程序, eg: (1)绘制极坐标图:。 (2)绘制曲面图:。 theta=-pi/6:pi/100:pi/6; rho=(3*sin(theta).*cos(theta))./(sin(theta).^3+cos(theta).^3); polar(theta,rho,'m') x=-3:0.01:3; y=-3:0.001:3; [x,y]=meshgrid(x,y); z=-5./(1+x.^2+y.^2); surf(x,y,z); title('曲面图');