Where is matlabroot defined?
7 次查看(过去 30 天)
显示 更早的评论
When I installed MATLAB, my path contained a weird hardlink so that now matlab thinks it is installed in /export/LOCALHOST/opt/MATLAB..., whereas the actual path is /opt/MATLAB...
Where is matlabroot defined and how can i update it?
4 个评论
Guillaume
2019-9-25
Wherever it may be defined is undocumented and I've never seen any information about it, so you may find it difficult to get the information. Your best bet is to raise a support request.
Saying that, on windows it appears to be stored in the registry (HKLM\SOFTWARE\Mathworks\MATLAB\yourver\MATLABROOT). However, on linux no idea what the equivalent would be.
Walter Roberson
2020-7-24
On Mac, MATLAB finds the name of the executable that it is running, and goes up two directory levels and calls that matlabroot .
For example /Volumes/ZZ9PluralZ/Applications/MATLAB_R2020a.app might be the .app . On Mac, .app are actually directories with a special structure. Inside the directory, Contents/Info.plist would be consulted, looking for the key "Executable file", which says "MATLAB". MacOS would then look in Contents/MacOS for an executable by that name (so Contents/MacOS/MATLAB ) and would start it up . In this example that would be /Volumes/ZZ9PluralZ/Applications/MATLAB_R2020a.app/Contents/MacOS/MATLAB . Then MATLAB would take that name and go up two directories to /Volumes/ZZ9PluralZ/Applications/MATLAB_R2020a.app and call that matlabroot .
There is another way to start MATLAB on MacOS, which would involve running /Volumes/ZZ9PluralZ/Applications/MATLAB_R2020a.app/bin/matlab . In that case MATLAB would see that it was invoked from bin and would go up one directory instead of two.
回答(0 个)
另请参阅
类别
在 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!