@struct method not being found

조회 수: 1 (최근 30일)
Brandon Kuczenski
Brandon Kuczenski 2014년 3월 21일
답변: Brandon Kuczenski 2014년 4월 2일
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.

채택된 답변

Brandon Kuczenski
Brandon Kuczenski 2014년 4월 2일
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.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Structures에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by