save figure

6 visualizaciones (últimos 30 días)
Baba
Baba el 8 de Nov. de 2011
How do I save this figure and supress so that the figure isn't actually shown?
data=load('data.txt')
plot(x)

Respuesta aceptada

Fangjun Jiang
Fangjun Jiang el 8 de Nov. de 2011
h=figure('visible','off');
plot(h,1:10);
saveas();
close(h);

Más respuestas (0)

Categorías

Más información sobre Printing and Saving en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by