Calling the same function from multiple scripts

조회 수: 12 (최근 30일)
Priyanka Mehta
Priyanka Mehta 2015년 10월 30일
댓글: Walter Roberson 2015년 10월 30일
I am calling a function from multiple scripts in separate Matlab windows at the same time. Would this affect my function's output? Would this make the process slow?

답변 (1개)

Walter Roberson
Walter Roberson 2015년 10월 30일
It should be fine as long as you are avoiding "clear all" and "clear functions"
  댓글 수: 2
Priyanka Mehta
Priyanka Mehta 2015년 10월 30일
Thank you for your prompt response. I do not have 'clear all' in my function or 'clear functions' in my main script. But I do have global variables in my main script as well as the function. Would the function call from one script interfere with the other? Or would they still run independently?
Walter Roberson
Walter Roberson 2015년 10월 30일
It depends what you mean by "separate MATLAB windows". If you mean that you started multiple sessions each with its own command window, then they will not interfere with each other (provided you are not changing the .m files as you go!).
If you mean multiple figures, all started from the same command window, then Yes, the global variables would be shared. global variables apply across all activities within the same process.
If you are trying to use global variables with the Parallel Processing Toolbox then you need to know that the contents of global variables are not copied from the original process to the workers, and changes to the globals on one worker do not affect the other workers.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Whos에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by