How do I keep all plots open?
31 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
How do I keep plots open (even when function or code finishes) and have new plots just create a new plot (not on same axis or anything)
Also how to save multiple plots? e.g. have a function that everytime is run automatically saves the plot to some folder or something
2 comentarios
Walter Roberson
el 23 de Mzo. de 2020
Use
figure
and (probably) your new plots will not overwrite the old one.
Sindar
el 24 de Mzo. de 2020
Also, "print" saves figures
"print(filename,formattype) saves the current figure to a file using the specified file format, such as print('BarPlot','-dpng'). If the file name does not include an extension, then print appends the appropriate one."
Respuestas (0)
Ver también
Categorías
Más información sobre Annotations 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!