Global variables and multiple licenses of Matlab

3 ビュー (過去 30 日間)
Wouter
Wouter 2013 年 2 月 28 日
Hello everyone,
At the moment I'm running multiple Matlab licenses on the same computer. My analyses utilize the same function m-file which uses global variables.
Can anyone tell me if these different instances of Matlab are able to access and use the single function file, without interfering with one anothers calculations?
Thanks in advance!

採用された回答

Daniel Shub
Daniel Shub 2013 年 2 月 28 日
Each instance of MATLAB is completely independent. Things like global variables are local to the instance of MATLAB that created the variables. If you are accessing hardware like a disk or serial port you can run into problems. Potentially doing things on a GPU could be problematic. In general you shouldn't have any problems.

その他の回答 (2 件)

Jan
Jan 2013 年 2 月 28 日
編集済み: Jan 2013 年 2 月 28 日
In fact, the other way around is complicated: Sharing variables between Matlab sessions requires very smart strategies, see FEX: sharedMatrix.
But beside the warning, that global variables are a bad programming style, you can run into troubles, when you store them temporarily on the disk due to collisions.

Wouter
Wouter 2013 年 2 月 28 日
Good to know, thank you both!

カテゴリ

Help Center および File ExchangeStartup and Shutdown についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by