How to load a .mat file and make all the variables from that .mat file to be global variables?
13 views (last 30 days)
Show older comments
I loaded the .mat file and use the variables in the rest of the codes. Even though the file is loaded outside the for loop, it shows the variable is not defined during the calculation, moreover, the very same variable is used in even earlier calculation. I think the problem is caused by the parfor, so I would like to set the loaded variables as global to see if the problem can be solved.
The part of the code is
load('SobolParameter3Layer.mat');%input: numLayer numPar N Par Para Parac AllCol numCol totalCol
for j=1:numPar
comb=AllCol{j};
SF=zeros(N,size(AllCol{j},1));WF=zeros(N,size(AllCol{j},1));
parfor i=1:size(comb,1)
para=Par(:,1+numPar:2*numPar);
para(:,comb(i,:))=Par(:,comb(i,:));
[SF(:,i),~,WF(:,i)]=BandStruS(para,numLayer);
end
Start(:,numCol(1,j):numCol(2,j))=SF;Width(:,numCol(1,j):numCol(2,j))=WF;
end
the code can run without problem for the first for loop, but when it comes to parfor, the "numPar" becomes undefined.
1 Comment
Stephen23
on 14 Nov 2018
Edited: Stephen23
on 14 Nov 2018
"How to load a .mat file and make all the variables from that .mat file to be global variables?"
"...I would like to set the loaded variables as global to see if the problem can be solved."
Global variables cause more problems than they solve. They make code slow, buggy, and very hard to debug. Combining this with dynamically accesssed variable names would be a double-mix of bad code design:
Accepted Answer
Stephen23
on 14 Nov 2018
Edited: Stephen23
on 14 Nov 2018
Always load any .mat file into an output argument (which is a structure):
S = load(...);
This avoids several issues related to overwriting variables, undefined variables, and calling an unexpected function/class/variable. You should be doing this every time you load a .mat file.
Then within your code you simply access the fields of that structure by using dot notation:
S.numLayer
S.numPar
... etc
More Answers (1)
Adam Danz
on 13 Nov 2018
You don't want to make all the mat variable global. That will open a can of worms. If variables in the mat file are needed in other functions, pass those variables to the function.
Also, name the variables you're loading.
load('SobolParameter3Layer.mat', 'numLayer', 'numPar', 'N', 'Par', 'Para', 'Parac', 'AllCol', 'numCol', 'totalCol');
If you try to load a variable that isn't in the mat file you'll get a warning.
load('SobolParameter3Layer.mat', 'fubar')
Warning: Variable 'fubar' not found.
If you make these changes and still get an error, please comment including the full copy-pasted error message and what time is producing it.
3 Comments
Adam Danz
on 13 Nov 2018
Edited: Adam Danz
on 13 Nov 2018
When you loaded your variables, are you sure 'numPar' was in the mat file and loaded properly?
Also, why is the following line within the loops when it doesn't rely on the value of i or j? Can you move that line so it's prior to the loops?
para=Par(:,1+numPar:2*numPar);
See Also
Categories
Find more on Parallel for-Loops (parfor) 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!