isnan input arguments of type 'cell'
28 ビュー (過去 30 日間)
古いコメントを表示
I am getting a cell error
a={'2' [NaN] '4' '5'}
isnan(a)
Undefined function 'isnan' for input arguments of type 'cell'.
How can I get around this error
0 件のコメント
採用された回答
the cyclist
2012 年 6 月 28 日
cellfun(@isnan,a)
2 件のコメント
Kavya Ashok
2016 年 9 月 14 日
This returns the index of a where nan exists. What if you want Nan to be removed from the original array?
その他の回答 (1 件)
Debejyo Chakraborty
2016 年 7 月 20 日
Sometimes this may be necessary: b = cellfun(@isnan,a,'UniformOutput',false);
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!