delete the columns with the last two values equal to NAN
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Qian cao
le 21 Déc 2015
Modifié(e) : Image Analyst
le 21 Déc 2015
Hi all, I have a matrix
a=[1 NaN 1 1; 1 1 1 1; NaN NaN NaN 1;NaN NaN 1 NaN ]
How to do the function that deletes the columns whose last two values are NaN? So the a matrix here is expected to be
b=[1 1; 1 1; NaN 1; 1 NaN ]
after the first and second column are deleted from the matrix.
a =
1 NaN 1 1
1 1 1 1
NaN NaN NaN 1
NaN NaN 1 NaN
b =
1 1
1 1
NaN 1
1 NaN
Thank you very much.
0 commentaires
Réponse acceptée
Renato Agurto
le 21 Déc 2015
This should do it:
b = a(:, ~isnan(a(end-1,:)) | ~isnan(a(end,:)));
1 commentaire
Guillaume
le 21 Déc 2015
Alternatively,
b = a(:, ~all(isnan(a(end-1:end, :))));
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur NaNs dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!