フィルターのクリア

How do I use if with the value of the array is a string?

1 回表示 (過去 30 日間)
Hang Vu
Hang Vu 2019 年 5 月 4 日
コメント済み: Hang Vu 2019 年 5 月 4 日
I want to check if the final value of the string is 'NaN'
parents=[2 3 1 NaN];
f = parents(size(parents,2));
if f == 'NaN'
check=0
else
check=1
end

採用された回答

per isakson
per isakson 2019 年 5 月 4 日
編集済み: per isakson 2019 年 5 月 4 日
Replace
if f == 'NaN'
by
if isnan( f )
  1 件のコメント
Hang Vu
Hang Vu 2019 年 5 月 4 日
Thank you so much! Hope you have a good weekends!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCharacters and Strings についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by