Borrar filtros
Borrar filtros

Saving a figure without menu?

7 visualizaciones (últimos 30 días)
thomas mann
thomas mann el 30 de Ag. de 2013
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?

Respuesta aceptada

Jan
Jan el 30 de Ag. de 2013
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 comentarios
Jan
Jan el 30 de Ag. de 2013
Editada: Jan el 30 de Ag. de 2013
No, figures can be accessed freely from Matlab. If you explain the intention of this question, a more detailed answer would be possible.
thomas mann
thomas mann el 31 de Ag. de 2013
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.

Iniciar sesión para comentar.

Más respuestas (1)

Azzi Abdelmalek
Azzi Abdelmalek el 30 de Ag. de 2013
Editada: Azzi Abdelmalek el 30 de Ag. de 2013
x=0:0.1:10;
y=sin(x)
h=plot(x,y)
saveas(h,'filename.jpg')
  2 comentarios
thomas mann
thomas mann el 30 de Ag. de 2013
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.
Azzi Abdelmalek
Azzi Abdelmalek el 30 de Ag. de 2013
Try this
set(gcf,'menubar','figure')

Iniciar sesión para comentar.

Categorías

Más información sobre Interactive Control and Callbacks en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by