@struct method not being found

1 vue (au cours des 30 derniers jours)
Brandon Kuczenski
Brandon Kuczenski le 21 Mar 2014
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.

Réponse acceptée

Brandon Kuczenski
Brandon Kuczenski le 2 Avr 2014
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.

Plus de réponses (0)

Catégories

En savoir plus sur Structures dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by