How to save multiple Matlab figures in separate folders?
    1 Ansicht (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
Hi,
I want to save each of multiple figures in separate folders.. What is the command that I can use?
For example: file1.fig will be saved in A folder, file2.fig will be saved in B folder.
How can I do this?
Thanks a lot..
0 Kommentare
Antworten (1)
  Fangjun Jiang
      
      
 am 4 Apr. 2018
        
      Bearbeitet: Fangjun Jiang
      
      
 am 4 Apr. 2018
  
      use fullfile() to specify the full path of the file and saveas().
3 Kommentare
  Fangjun Jiang
      
      
 am 4 Apr. 2018
				Fig=plot(rand(1,10));
File=fullfile('c:\MyDirectory','FolderA','MyFigure.fig');
saveas(Fig,File,'fig');
Siehe auch
Kategorien
				Mehr zu Environment and Settings finden Sie in Help Center und File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

