matlab代码完成copy figure功能

Posted dontstop

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了matlab代码完成copy figure功能相关的知识,希望对你有一定的参考价值。

整理自百度知道:https://zhidao.baidu.com/question/482507465.html

在写报告的过程中经常碰到需要大量复制粘贴matlab生成的图片到word中,在不太正式的报告里一般用工具栏中的copy figure完成复制过程,一张图一张图地粘会非常麻烦,若要通过编写代码实现copy figure的功能,可使用以下函数:

print -dmeta

print -dbitmap

uimenufcn(gcf, ‘EditCopyFigure‘)

hgexport(gcf,‘-clipboard‘)

由于要用到gcf,需要画一张粘一张,当图片比较多时可以配合pause函数使用,如下:

figure(1)

hgexport(gcf,‘-clipboard‘)

pause

figure(2)

hgexport(gcf,‘-clipboard‘)

pause

figure(3)

hgexport(gcf,‘-clipboard‘)

pause

figure(4)

hgexport(gcf,‘-clipboard‘)

以上是关于matlab代码完成copy figure功能的主要内容,如果未能解决你的问题,请参考以下文章

matlab 如何按照指定的分辨率保存figure

matlab的figure怎么导出txt

如何使matlab中的控件和界面一起大小变化

matlab设置figure的刻度

matlab中figure的图像旋转

matlab 如何更改figure坐标轴刻度为不等间距刻度