How can I launch a specific version of MATLAB from Windows' command prompt with matlab command?
91 次查看(过去 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!