Remove NaN and create one column
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Hi,
I have a matrix A (31 x 12) which has NaN values and need to remove all NaN values and make it a one column (:). How can I do it MATLAB?
1 Commento
per isakson
il 4 Lug 2014
Modificato: per isakson
il 4 Lug 2014
Delete one of your two nearly identical questions!
Risposta accettata
per isakson
il 4 Lug 2014
"I have this matrix A and has NaN values. I need
- to remove NaN values from all the columns and
- write the values into one column (:)."
Step one is not possible because it would result in columns with different length.
Switching the order of the steps will return a result
A = A(:);
A( isnan( A ) ) = [];
Più risposte (0)
Vedere anche
Categorie
Scopri di più su NaNs in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!