Strange behaviour appears like Matlab bug

1 次查看(过去 30 天)
The problem: in each iteration of the loop, a string is created and the converted to the function str2func, e.g. myfunc=str2func(string1); However, after several thousand iterations (not at particular, but seems like random event) myfunc result is the function used some iterations ago, while str2func(string1) as executed directly in matlab command window, returns the function correctly. But if I execute the line myfunc=str2func(string1), myfunc is not the same as str2func(string1) would produce. I am really baffled, seems like out of nowhere - it's like the line "f=1" would return 3 and not 1. Is it a memory thing or what? I have no idea on this.
  3 个评论
Tomas Iesmantas
Tomas Iesmantas 2013-4-8
Hi, The code itself is too long to be of any use here. Would need to spend quite a long time, to describe how it works. I do not create lots of handles, instead I overwrite the old with the new one.
Cedric
Cedric 2013-4-8
编辑:Cedric 2013-4-8
Does the pool of these function names contain only your own functions, or does it contain built-ins? If there are built-ins, which ones?
If you had for example an array named funcIds and one of the function names would be funcIds as well, you would use the array by evaluating funcIds(k) until the call to str2func('funcIds'), and the next evaluation of funcIds(k) would be a function call.
Jan's comment/answer is certainly motivated by the fact that we almost never see cases that justify your approach; if you are sure that it is the only possible one, fine, but if you have a doubt we could also discuss the approach.

请先登录,再进行评论。

回答(1 个)

Jan
Jan 2013-4-8
编辑:Jan 2013-4-8
if I execute the line myfunc=str2func(string1), myfunc is not the same as str2func(string1) ...
This happens, when there are two functions with the name "string1" in different folders and during the execution the current folder changes. Then you can get two different replies, and both are true.
A similar effect can appear, when a function is read and modified afterwards. Then the function is only reloaded after a clear(string1) or clear('all').
Obviously creating a large number of function handles and perhaps creating M-files dynamically (?) is prone to errors and therefore a bad programming practize.
  1 个评论
Tomas Iesmantas
Tomas Iesmantas 2013-4-8
First of all, neither of the issues that you mentioned are present in my settup - no change of working folder occur and no modification of the function myfunc is made after the conversion from string (myfunc=str2func(string1)). And clear myfunc does not help. It just keeps mistakenly attaching the wrong function. However, at the next iteration, everything is ok - iterations are independent of each other.
Second, I do not creat M-files dynamically. I just function handle ("@"). And since at each iteration I do not no a priori the exact structure of the function "myfunc" I see no other way on how to solve the problem I am working on.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by