How can I identify the indices of rows containing all NaNs from matrix?
7 次查看(过去 30 天)
显示 更早的评论
I have very large matrices, in which some rows contain all NaN. I don't want to remove these rows. But I wish to identify which index contains all NaN. I have seen code for removing such rows, but how can I extract the index value?
I am not very familiar with MATLAB. Thanks in advance.
0 个评论
采纳的回答
Star Strider
2017-5-31
Try this:
M = [rand(3,5); NaN(1,5); rand(4,5); NaN(1,5); rand(2,5)]; % Create Data
NaN_rows = find(all(isnan(M),2)); % Identify ‘NaN’ Rows By Index
更多回答(1 个)
Chandrasekhar
2017-5-31
% idenfity NaN's in the matrix
k = isnan(a);
% find the indices of NaN's
find(k==1);
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!