The other thing I wanted to do was to start all over again running the models to add a different simulation saved with another data file name after that final code runs. Basically to run those several windowns on a loop so as to have several simulations during the night.
How to run a mat file only after the others have run
    3 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
Hi,
I have 4/5 matlab windows open and I run several independent mat files at the same time. When they finish I have another mat file which loads the data files saved by the others and computes an overall view. I start that code when I realize the others have finished but can I set this code to run automatically after the other files?
Hope I was clear.
Thanks a lot.
Respuestas (1)
  KSSV
      
      
 el 8 de Nov. de 2016
        YOu have to run a loop for all the files, do the operations and save them back.
F = dir('*.mat');    % get all mat files in the present folder 
for ii = 1:length(F)
   Fii = F(ii).name;    % present file name 
   %%load the file 
   %%do what ever you want      
end
1 comentario
Ver también
Categorías
				Más información sobre Workspace Variables and MAT Files 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!

