MATLAB: Multiple Calls to Functions in Separate MATLAB Sessions

executionfunctionoverlapsessionssimultaneity

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

Best Answer

Not to my knowledge. (Unless it shares a file read/write or something like that).