remove the NaN numbers from a matrix without loop

조회 수: 1 (최근 30일)
Noushin Farnoud
Noushin Farnoud 2011년 11월 28일
Hello Matlab Users,
In my matrix of NxD dimension, I know that the number of NaNs on each row are the same, however the position of these NaN elements differ between rows. Is there an efficient way to remove NaN's from this matrix while keeping the shape of matrix, as shown in the simplified example:
A=[ 1 2 3 NaN 4 5 NaN; 6 NaN 7 8 NaN 9 10]
and I would like to be able to remove NaNs and get:
A_mod=[ 1 2 3 4 5; 6 7 8 9 10]
I appreciate your help, NF

채택된 답변

Walter Roberson
Walter Roberson 2011년 11월 28일
At = A.';
A_mod = reshape(At(~isnan(At)),[],size(A,1)).';

추가 답변 (1개)

bym
bym 2011년 11월 28일
A_mod = A(~isnan(A)); %untested
  댓글 수: 3
bym
bym 2011년 11월 28일
right
Noushin Farnoud
Noushin Farnoud 2011년 11월 29일
Thank you so much Walter. This worked perfectly!

댓글을 달려면 로그인하십시오.

카테고리

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