matlab使用figure(1), figure(2)...可以作出多幅图。示例如下:
|
1
2
3
4
5
6
|
theta=linspace(0,2*pi,400);
rou=4*sin(2*theta);
figure(1)
polar(theta,rou);
figure(2);
ezplot('x^(2/3)+y^(2/3)-2^(2/3)')
|
matlab使用figure(1), figure(2)...可以作出多幅图。示例如下:
|
1
2
3
4
5
6
|
theta=linspace(0,2*pi,400);
rou=4*sin(2*theta);
figure(1)
polar(theta,rou);
figure(2);
ezplot('x^(2/3)+y^(2/3)-2^(2/3)')
|
相关文章: