How to ignore NaN in a string cell
8 ビュー (過去 30 日間)
古いコメントを表示
Daneisha Blair
2021 年 9 月 24 日
コメント済み: Sulaymon Eshkabilov
2021 年 9 月 26 日
Hi,
I have a cell array called test2 that contains some NaN and strings in each column, see attached image below.
I would like to create a loop where I can loop through test2 and ignore the NaN columns. The issue I am having is NaN characteristic is double and the if statement I created, if (cellfun(@(x) any(isnan(x)),test{i},'UniformOutput',false)), gives this error input#2 expected to be a cell array, was double instead.
Side note: i is the indices, for example i=1:1590.
Any help is very much appreciated.![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/748969/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/748969/image.png)
0 件のコメント
採用された回答
Sulaymon Eshkabilov
2021 年 9 月 25 日
編集済み: Sulaymon Eshkabilov
2021 年 9 月 25 日
A simple answer is e.g.:
TEST = test(cellfun('isclass', test, 'char')) % All NANs removed
An alternative solution is e.g.:
test(cellfun(@(test) any(isnan(test)),test)) = []
2 件のコメント
その他の回答 (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!