您的位置: 首页 > 文章 > MATLAB怎么做两个figure? MATLAB怎么做两个figure? 分类: 文章 • 2024-11-21 11:47:34 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)')