Undefined function 'eq' for input arguments of type 'struct'

10 ビュー (過去 30 日間)
pamela sulis
pamela sulis 2015 年 10 月 27 日
編集済み: pamela sulis 2015 年 10 月 28 日
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
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.
pamela sulis
pamela sulis 2015 年 10 月 28 日
編集済み: pamela sulis 2015 年 10 月 28 日
yes, i want to test if the structure is empty... I try if(isempty(s)) instead of if(s(1,1)==[]) and i solve my problem! Thanks

サインインしてコメントする。

採用された回答

James Tursa
James Tursa 2015 年 10 月 27 日
Does this do what you want?
if( isempty(s) )
  3 件のコメント
James Tursa
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.
pamela sulis
pamela sulis 2015 年 10 月 28 日
I use if( isempty(s) ) and i solve the problem! Thanks

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeStructures についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by