1、分别绘制,的三维图和等高线
x=-2*pi:0.1:2*pi;
y=-2*pi:0.1:2*pi;
[x1,y1]=meshgrid(x,y);
z1=x1.*y1+eps;
subplot(2,2,1);
mesh(x1,y1,z1)
subplot(2,2,2)
contour(x1,y1,z1,10)
z2=sin(x1.*y1)+eps;
subplot(2,2,3);
mesh(x1,y1,z2)
subplot(2,2,4);
contour3(x1,y1,z2,10)
2、选取合适的θ,绘制下面的极坐标图形:
t=0:0.1:2*pi;
p=cos(2.*t/2);
subplot(1,3,1);
polar(t,p)
p1=sin(t)./t;
subplot(1,3,2);
polar(t,p1)
p2=1-(cos(7*t)).^3;
subplot(1,3,3);
polar(t,p2)
3、绘制z=sin(xy)的表面图,并剪切