1 如何修改 MATLAB 中画图的大小

  • 3750
请先 登录 后评论

最佳答案

通过 set 指令可以指定图像大小,语法为:

set(gcf,'position',[centerX,centerY,width,height])

其中“width”和“height”分别代表宽度和高度。

centerX 为 figure 的中心点在屏幕的 x 坐标,centerY 为 figure 的中心点在屏幕的 y 坐标,和固定图像尺寸没有关系。

请先 登录 后评论

其它 0 个回答