how save plot in specific folder ?

176 visualizaciones (últimos 30 días)
Muhannad Saleh
Muhannad Saleh el 10 de Mzo. de 2021
Comentada: Jan el 11 de Mzo. de 2021
i uesd ( spectrogram ) to plot pic i need save this pic in specific folder i created i use ( exportgraphics ) but is save in current folder how can save with any folder whant

Respuesta aceptada

Jan
Jan el 10 de Mzo. de 2021
Add the wanted path to the file name:
filename = fullfile('D:\Your\Folder', 'File.jpg')
exportgraphics(obj, filename)
  3 comentarios
Muhannad Saleh
Muhannad Saleh el 11 de Mzo. de 2021
how can save more pic in loop with difrient name ?
Jan
Jan el 11 de Mzo. de 2021
Folder = 'D:\Your\Folder';
for k = 1:100
filename = sprintf('File%03d.jpg', k);
file = fullfile(Folder, filename);
exportgraphics(obj, file);
end

Iniciar sesión para comentar.

Más respuestas (1)

Ruger28
Ruger28 el 10 de Mzo. de 2021
In older versions of MATLAB:
filename = fullfile('D:\Your\Folder', 'File.jpg');
saveas(MyFigure,filename);
  1 comentario
Muhannad Saleh
Muhannad Saleh el 11 de Mzo. de 2021
how can save more pic in loop with difrient name ?

Iniciar sesión para comentar.

Categorías

Más información sobre 2-D and 3-D Plots 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!

Translated by