Azzera filtri
Azzera filtri

Execute several m-files one after the other

5 visualizzazioni (ultimi 30 giorni)
Mepe
Mepe il 31 Ago 2020
Risposto: Walter Roberson il 31 Ago 2020
For an import routine I would like to execute different m-files one after the other. Here at, the file source is then asked:
[path] = uigetdir('C:\Users\gxxxx\Desktop\','Please select folder ...');
if ~ischar(path)
error('Failure!')
return;
end
How can I, on the one hand, control that the various m-files are opened and executed one after the other, and how can I bypass the query shown above when specifying the path and always use the path of the m-file as the source directory?
  2 Commenti
Stephen23
Stephen23 il 31 Ago 2020
Modificato: Stephen23 il 31 Ago 2020
"...I would like to execute different m-files..."
Are they scripts or functions?
Do they need to be run in the current directory?
Are their names unique, or do other folder/s contain scripts/functions with the same name/s?
Mepe
Mepe il 31 Ago 2020
Hi Stephen,
These are scripts. These are in different locations and should also be executed out there. The names of this files are all different.
Example:
c:\test\01\1.m
c:\test\02\2.m
...
Execution of 1.m when finished 2.m.
Many thanks!

Accedi per commentare.

Risposte (1)

Walter Roberson
Walter Roberson il 31 Ago 2020
Provide your own uigetdir.m that has the behavior you want. Including possibly having set up ahead of time which directories you want to read from, and having your uigetdir() supply the next directory in sequence each time it is called.

Community Treasure Hunt

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

Start Hunting!

Translated by