Undefined function 'eq' for input arguments of type 'struct'
조회 수: 6 (최근 30일)
이전 댓글 표시
Hi! I create this code in which s is a struct
if(s(1,1)==[])
i=i+1;
end
I have an error: 'Undefined function 'eq' for input arguments of type 'struct', I don't understand the error's meaning. Someone can help me, thanks
댓글 수: 2
Stephen23
2015년 10월 27일
Do you want to test if the structure is empty?
If s is a structure, then s(1,1) will also be a structure, which clearly is not a number and so does not make sense to check if it equals something else.
채택된 답변
James Tursa
2015년 10월 27일
Does this do what you want?
if( isempty(s) )
댓글 수: 3
James Tursa
2015년 10월 27일
편집: James Tursa
2015년 10월 27일
I know. It is for readability ... at least to my eyes. Could be as you surmise, because it looks more like C or Fortran, so my brain doesn't have to think as much in determining what is on the line.
추가 답변 (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!