Save graph / plot progressively
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Nicola
el 20 de En. de 2014
Respondida: Nicola
el 20 de En. de 2014
Good evening, i need help, i want that my code saves plot in progressive mode. I thought to use saveas function in a code like this
f = figure('Visible', 'off');
plot(x,y,'r');
saveas(f,'figure_',num2str(numberofgraph,'%d'),'.jpeg');
but it doesn't work, it says "too many imput arguments"(i think it doesn't like
num2str(numberofgraph,'%d'),
How can i also decide where it has to save it? Thanks for your help
0 comentarios
Respuesta aceptada
Walter Roberson
el 20 de En. de 2014
saveas(f,['figure_',num2str(numberofgraph,'%d'),'.jpeg']);
0 comentarios
Más respuestas (1)
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!