How to delete nan from array

392 vues (au cours des 30 derniers jours)
Hana
Hana le 13 Jan 2015
Commenté : Yang Liu le 4 Août 2022
B=[nan 8 nan;6 nan nan;6 5 8] C=[nan 4 nan;4 nan nan;5 3 2]
Answer: B=[8 6 6 5 8] C=[4 4 5 3 2]

Réponse acceptée

Guillaume
Guillaume le 13 Jan 2015
Modifié(e) : Guillaume le 13 Jan 2015
B = B';
B = B(~isnan(B))';
C = C';
C = C(~isnan(C))';
  3 commentaires
Guillaume
Guillaume le 13 Jan 2015
Yes, not sure what I was thinking.
Yang Liu
Yang Liu le 4 Août 2022
Why use '? Why not just B=B(~isnan(B))?

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by