i want to delete a specific number of NaN in a matrix

1 次查看(过去 30 天)
i have a matrix A, and i would like to delete the columns with all cells NaN and the ones with just one valid number
A =
1 3 5 1 NaN
2 3 4 NaN NaN
NaN 4 2 NaN NaN
NaN NaN NaN NaN NaN
NaN NaN NaN NaN NaN
NaN NaN NaN NaN NaN
and i manage to delete some with
A(:,all(isnan(A)))=[] %to al column with all cells as NaN
A(:,any(isnan(A)))=[] %to whatever nan i find

采纳的回答

madhan ravi
madhan ravi 2019-2-13
A(:,all(isnan(A)))=[]; % delete columns with only NaNs
A(:,sum(~isnan(A))==1)=[] % deletes column filled with one number

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by