save figure
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
How do I save this figure and supress so that the figure isn't actually shown?
data=load('data.txt')
plot(x)
0 comentarios
Respuesta aceptada
Fangjun Jiang
el 8 de Nov. de 2011
h=figure('visible','off');
plot(h,1:10);
saveas();
close(h);
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Printing and Saving en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!