I have been advised by Matlab support that this is expected behavior, because function_handle has higher precedence than struct- even though struct is the first argument- a function_handle method is sought.
@struct method not being found
1 次查看(过去 30 天)
显示 更早的评论
I have written a number of extensions to the Matlab struct type, which I have stored in a directory called @struct. One of these methods is declared as follows:
function D=moddata(D,Field,Fn,new)
...
in which Fn is a function handle.
However, I am seeing the following behavior:
K>> which moddata
C:\Users\...\util\@struct\moddata.m % struct method
K>> isa(S,'struct')
ans =
1
K>> moddata(S,'Path',@(x)regexprep(x,my_RE,'$1'),'CIPath')
Error using keyboard
Undefined function 'moddata' for input arguments of type 'function_handle'.
K>>
Other methods in the @struct folder are being accessed just fine.
Why is Matlab not finding my method? It seems to be unduly focusing on the function_handle instead of the struct argument.
Thanks in advance.
0 个评论
采纳的回答
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Structures 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!