how to share multiple variables in different m files?

12 views (last 30 days)
Now i have two solutions to address the problem.
  1. The one is set all the variables need to share to ouptput variable,and input them when it's used in other function.
  2. The other is set all these variables to global variable.Does Matlab can address it by other better solution?

Accepted Answer

Star Strider
Star Strider on 29 Aug 2014
If your m-files are scripts running independently of each other, my choice would be to use a .mat file. Save all the variables in a .mat file and then using load with an output argument, load only the variables needed by a particular script into the workspace.
If your m-files are all functions running in your workspace at the same time, you can pass the variables as arguments as needed by the functions and then return new values for them as function outputs (or use the much less-desirable option of declaring them as global variables).
It all depends on what your m-files are doing, and whether they need the variables serially or simultaneously.

More Answers (1)

Jasper
Jasper on 29 Aug 2014
What type of program are you using this in? Are you using some form of parallel processing?
If not, I would recommend passing variables as a structure to the functions, and returning a similar (updated) structure as the output of the functions.
For instance:
function output=fcn(input)
output=input;
output.var1=input.var1*20;
end
p.var1=2^8;
p.var2='somestring';
p=fcn1(p);

Products

Community Treasure Hunt

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

Start Hunting!