why isfield does not work with tables, but fieldnames does?
이전 댓글 표시
in 2014a
Example:
>> istable(t)
ans =
1
>> t
t =
a b c
_ _ _
1 2 3
>> isfield(t,'a')
ans =
0
>> any(strcmp('a',fieldnames(t)))
ans =
1
댓글 수: 1
Roger Parkyn
2015년 9월 15일
Yes - it is something they have missed. Thank you for the work-around with: any(strcmp('a',fieldnames(t)))
답변 (2개)
the cyclist
2015년 9월 16일
0 개 추천
That does seem inconsistent. It has the same behavior for dataset objects as well.
카테고리
도움말 센터 및 File Exchange에서 Structures에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!