How to open a dialog box when saving multiple figures?

4 visualizaciones (últimos 30 días)
Alon Rozen
Alon Rozen el 13 de Feb. de 2020
Respondida: Subhadeep Koley el 13 de Feb. de 2020
Hi,
I have few figures which I want to save togethe and array 'H' of their handles.
The comand:
savefig(H,File_Name)
Will save them to 'File_Name.fig' at the GUI default directory.
Is there a way to open a dialog box to specify file name, directory and even to abort the operation?
I think I covered all 'save file' options but couldn't figure it out.
Thanks,
Alon

Respuestas (1)

Subhadeep Koley
Subhadeep Koley el 13 de Feb. de 2020
Here is an example
close all; clc;
H = figure;
surf(peaks);
filter = {'*.fig'};
savefig(H, uiputfile(filter));

Categorías

Más información sobre Interactive Control and Callbacks en Help Center y File Exchange.

Productos


Versión

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by