Why does not overloading using assignin work?
이전 댓글 표시
Hi, I have noticed something strange. It have most likely to do with the fundamental structure of matlab. What I wonder is if there are some known (and expected?) problems with overloading functions with assignin. What I want to do is to create a variable called colorbar. This must then overload the function colorbar.
To avoid all comments: I know that it is normally bad practice to do like this, but I am afraid that the change would be is more or less out of my hands.
To show the problem I have provided 2 examples. The first one works fine:
function testFcn()
colorbar = 'none';
disp(colorbar)
The output is none as I want. The second example does not give the expected output:
function testFcn()
assignFcn();
disp(colorbar);
return; % Dummy line, set breakpoint here
function assignFcn()
myVar = 'colorbar';
assignin('caller', myVar, 'none');
the output is an axes handle here. However, if a breakpoint is set at the same line as return (or on the same line as disp as well) and disp(colorbar) is executed in the command window I will once again get the expected output.
This can of course be solved by assigning a value like colorbar = 'none', but what I am interested in knowing is why it does not work with assignin. Is it a bug or is this the expected output?
EDIT:
After some thinking I think that I have found the reason. The guess is that while assignin is evaluated in runtime the decisions whether something is a variable, a function, not defined,... is done by the compiler, there can be a problems here. The compiler will then treat colorbar as a function since it cannot see what will happen inside assignin. If someone want to use assignin to assign a value to a variable, then eval or evalin is required to evaluate the variable as well.
Does this make sense?
채택된 답변
추가 답변 (1개)
per isakson
2014년 8월 25일
편집: per isakson
2014년 8월 25일
There is a function
why
to explain behaviors like this one. I use it when help doesn't help.
I added whos before disp(colorbar) in testFcn, which confirms that assignFcn works as expected.
Yes, your EDIT make sense. (I tried feature('accel','off') and feature('jit','off'), which however didn't change the behavior.)
The MathWorks Support Team (see link by AJ von Alt) writes "This is expected behavior."   However, as far as I can find it is not documented behavior.
IMO: Matlab should at least issue a warning.
댓글 수: 2
Matt J
2014년 8월 25일
IMO: Matlab should at least issue a warning.
I don't think MATLAB can anticipate when it is going to happen. It would have to analyze the content of the input strings to assignin. If it could do that, the problem probably wouldn't exist at all.
per isakson
2014년 8월 25일
편집: per isakson
2014년 8월 25일
I'm a naive user of a high level language.
카테고리
도움말 센터 및 File Exchange에서 Whos에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!