remove the NaN numbers from a matrix without loop
Ältere Kommentare anzeigen
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
Akzeptierte Antwort
Weitere Antworten (1)
bym
am 28 Nov. 2011
A_mod = A(~isnan(A)); %untested
3 Kommentare
Walter Roberson
am 28 Nov. 2011
No, that will not maintain the number of rows, and does not get the elements in the right position to be reshape()'d in to rows.
bym
am 28 Nov. 2011
right
Noushin Farnoud
am 29 Nov. 2011
Kategorien
Mehr zu MATLAB finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!