Execute several m-files one after the other

6 vues (au cours des 30 derniers jours)
Mepe
Mepe le 31 Août 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 commentaires
Stephen23
Stephen23 le 31 Août 2020
Modifié(e) : Stephen23 le 31 Août 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 le 31 Août 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!

Connectez-vous pour commenter.

Réponses (1)

Walter Roberson
Walter Roberson le 31 Août 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.

Catégories

En savoir plus sur Adding custom doc dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by