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做两个figureMATLAB做两个figure

相关文章:

  • 2021-10-22
  • 2021-12-04
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-08
  • 2021-06-09
猜你喜欢
  • 2021-06-09
  • 2021-11-19
  • 2022-12-23
  • 2022-12-23
  • 2021-04-20
  • 2022-01-07
  • 2021-11-24
相关资源
相似解决方案