How to get MATLAB to process the files specified in batch
3 views (last 30 days)
Show older comments
How to get MATLAB to work with the files specified in batch. I have converted the program edited in matlab to .exe. I hope that batch will enable .exe to batch process any file I specify in batch. That is, I just need to change the name of the folder in batch, and .exe can batch process it.
0 Comments
Answers (2)
Walter Roberson
on 17 May 2022
You can have the code call uigetdir() if you want to prompt the user for the directory name.
Or you can make the main function into one that accepts one or more argument, and then if someone used the executable name and then the directory name on the Windows command line, then the function would receive the directory name as a parameter.
Caution: it is not uncommon in Windows for directory names to have spaces in them, but it the user were to command, for example
PlotOde.exe C:\Users\Sam\Assignment 7\Odes
then the part before the 7 would be one parameter, and the 7 on would be a second parameter. Windows would consider the space as the end of the parameter unless you make sure to use double-quotes to tell Windows to treat it as a single parameter.
See Also
Categories
Find more on Environment and Settings in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!