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!