How can I launch a specific version of MATLAB from Windows' command prompt with matlab command?
78 ビュー (過去 30 日間)
古いコメントを表示
I'm trying to execute MATLAB command from Windows 7's command prompt. So far I managed to get the result by the following command.
matlab -nosplash -nodesktop -minimize -r "rand(10)" -logfile C:¥TEMP¥logfile.txt
However, I noticed that this will invoke the latest MATLAB version I have installed (R2014b), while I want to run R2014a instead.
Looking at the help document on matlab (Windows) below, I can't find a way to specify the MATLAB version while using the matlab command. It seems that the matlab command for unix system does have that option.
Does this mean that I can't invoke R2014a from the commmand prompt while R2014b is also installed? Do I have to uninstall R2014b in order to call R2014a from the command prompt?
0 件のコメント
回答 (2 件)
Rajesh Gangireddy
2019 年 7 月 17 日
I know this thread is super old.
Still i will answer for the ones who stumble here after searching.
I have mutliple versions of matlab ranging from 2013b to 2018, 2013b being default.
To run a command/m file with a particular matlab version, I tried
"C:\Program Files\MATLAB\R2018b\bin\matlab.exe" -nosplash -nodesktop -minimize -r magic(5)
and it works.
You can run this durectly on cmd prompt or by creating a batch file.
Just replace magic(5) with your m file or command.
1 件のコメント
Taylor Gardner
2022 年 10 月 3 日
I was getting an error using "C:\Program Files". Command line didn't like the space. So, I used the short path . . .
"C:\PROGRA~1"
That worked for me.
参考
カテゴリ
Help Center および File Exchange で Startup and Shutdown についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!