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

조회 수: 1 (최근 30일)
Marco Callado
Marco Callado 2019년 2월 13일
댓글: Marco Callado 2019년 2월 13일
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