Numbering Plots
Mostrar comentarios más antiguos
Hi,
I have a script that generates a list of plots and outputs it as a pdf.
Now sometimes I have to reorder the plots which means having to re-numbering the figure numbers.
*_Example:
figure(1)
Plot(.......
%%%%%%%%%%%%%%%%%%%%%%
figure(2)
Plot(.......
%%%%%%%%%%%%%%%%%%%%%%
figure(3)
Plot(....... _*
Is there any way round this? using a loop such as
i = i + 1
and then use figure(i) instead?
I can't seem to get it to work
Thanks
4 comentarios
Jan
el 3 de Abr. de 2012
The loop sounds fine. What is the problem with it?
Aadil
el 3 de Abr. de 2012
Walter Roberson
el 3 de Abr. de 2012
You could start with
i = 1
so that it doesn't start from the last number.
Aadil
el 3 de Abr. de 2012
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Loops and Conditional Statements en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!