发布网友 发布时间:2022-04-21 22:15
共2个回答
热心网友 时间:2023-06-21 12:23
通过set指令可以指定图像大小,语法为set(gcf,'position',[centerX,centerY,width,height]),其中“width”和“height”分别代表宽度和高度。
centerX为figure的中心点在屏幕的x坐标,centerY为figure的中心点在屏幕的y坐标,和固定图像尺寸没有关系。
1、以绘图y=x^2-2x为例画出图像。
2、不关闭figure窗口,直接在Command Window中输入set(gcf,'position',[200,300,800,600]);
3、保存figure窗口和文件路径。
4、确定图像尺寸正确。
5、插入Word文件中。
参考资料:
MathWorks——set函数
热心网友 时间:2023-06-21 12:23
figure框菜单
file-->export setup-->size,
输入宽,高,选择相应单位
点右边apply to figure按钮就可以了
或者使用命令:如
set (gcf,'Position',[400,100,300,300], 'color','w')
参考资料:http://wu3495.blog.163.com/blog/static/11777398200912611912871/