Saving a figure without menu?

There is a figure('Menu','none') and a plot inside that figure. nothing else. is it possible to save it in .fig or .jpg? or extract data?

 采纳的回答

Jan
Jan 2013-8-30

0 个投票

You can export the figure's contents by commands written to the command window or from inside a script or function. See help print and help saveas. It would be easy to active the menubar also, as Azzi has shown already.

3 个评论

is it possible to protect figure's contents from exporting?
Jan
Jan 2013-8-30
编辑:Jan 2013-8-30
No, figures can be accessed freely from Matlab. If you explain the intention of this question, a more detailed answer would be possible.
i create a gui, which can plot some curve in a different figure, which is set Menu to none. i dont want others to save the results.

请先登录,再进行评论。

更多回答(1 个)

x=0:0.1:10;
y=sin(x)
h=plot(x,y)
saveas(h,'filename.jpg')

2 个评论

sorry, you didnt get it. i already have a figure with no menu with a plot. i dont know the handle of the plot, it wasnt created by me but a gui.
Try this
set(gcf,'menubar','figure')

请先登录,再进行评论。

类别

帮助中心File Exchange 中查找有关 Graphics Performance 的更多信息

产品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by