How to load a .mat file and make all the variables from that .mat file to be global variables?
조회 수: 14 (최근 30일)
이전 댓글 표시
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
Stephen23
2018년 11월 14일
편집: Stephen23
2018년 11월 14일
"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:
채택된 답변
Stephen23
2018년 11월 14일
편집: Stephen23
2018년 11월 14일
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
추가 답변 (1개)
Adam Danz
2018년 11월 13일
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
Adam Danz
2018년 11월 13일
편집: Adam Danz
2018년 11월 13일
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);
참고 항목
카테고리
Help Center 및 File Exchange에서 Parallel for-Loops (parfor)에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!