フィルターのクリア

define variable inside functions

29 ビュー (過去 30 日間)
Ben Wang
Ben Wang 2011 年 8 月 2 日
Dear all:
I parse a structure into a function, which build the system matrix for a model. The code looks something like this:
function [m] = test(param)
%%SETUP GLOBAL PARAMETERS
F = fieldnames(param);
for i = 1:length(F)
field = F{i};
assignin('caller', field, param.(field));
end
%%SET UP MATRICES FOR SOLVING THE MODEL
m = [kappa, alpha];
end
The structure param looks like the following:
param.kappa = 0.8;
param.alpha = 1;
but when I run the function test, matlab returns the following complain:
??? Undefined function or variable 'kappa'.
I would imagine 'assignin' assigns the value into the kappa, so kappa should be automatically defined, but this is not the case. If I take away kappa and just leave alpha in the matrix, matlab complains about alpha is not defined. Any ideas why this happens?
PS: The reason I do this is not obvious in this simplified function. My model is very complex and involves changing parameters in simulations, so I want to remain the variable name as their name rather than some vector/matrix index to minimise errors.
Thanks alot in advance!
Cheers Ben
  1 件のコメント
Oleg Komarov
Oleg Komarov 2011 年 8 月 2 日
As mentioned in your previous post I don't see the need for what you're doing since you're hardcoding m.
m = [param.kappa param.alpha];
And btw you already have an error...

サインインしてコメントする。

採用された回答

Jan
Jan 2011 年 8 月 2 日
The documentation of ASSIGNIN reveals, that the variable is created in the caller. Therefore the program would run as:
function m = MainProgram(param)
test(param); % Call the subfunction to create the variables
% SET UP MATRICES FOR SOLVING THE MODEL
m = [kappa, alpha];
end
function test(param) % The subfunction
F = fieldnames(param);
for i = 1:length(F)
field = F{i};
assignin('caller', field, param.(field));
end
As you can see, the confusion level of automagically created variables is very high. I strongly recommend to avoid such tricks, if you are not an advanced programmer and know exactly what you are doing. If you are a beginner, such Voodoo techniques will waste your time. Faster, nicer, easier and stable:
function m = MainProgram(param)
% SET UP MATRICES FOR SOLVING THE MODEL
m = [param.kappa, param.alpha];
end

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by