Multiple Calls to Functions in Separate MATLAB Sessions
2 views (last 30 days)
Show older comments
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 Comments
Accepted Answer
Sean de Wolski
on 27 Aug 2012
Not to my knowledge. (Unless it shares a file read/write or something like that).
0 Comments
More Answers (0)
See Also
Categories
Find more on Get Started with MATLAB in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!