Multiple Calls to Functions in Separate MATLAB Sessions
2 次查看(过去 30 天)
显示 更早的评论
I wrote a function named auto2process(param). I have several MATLAB sessions open on the same machine, and I need to call auto2process(param1, param2) in three MATLAB sessions:
session 1: calls auto2process(param1)
session 2: calls auto2process(param2)
session 3: calls auto2process(param3)
Question: would there be any undesirable code "mixing" from different sessions? That is, will one call of auto2process in session 1, be affected by the fact that auto2process is called in session 2? In other words, will session 1 calling auto2process(param1) switch to executing auto2process(param2) when auto2process(param2) is called in session 2?
Thanks, David
0 个评论
采纳的回答
Sean de Wolski
2012-8-27
Not to my knowledge. (Unless it shares a file read/write or something like that).
0 个评论
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!