Effacer les filtres
Effacer les filtres

how to exclude a row from a matrix

28 vues (au cours des 30 derniers jours)
D.J
D.J le 3 Oct 2018
Commenté : D.J le 3 Oct 2018
Hi all, I need to extract all data from a matrix except for one row (the 3rd from last).
Say for example I have the matrix below and I want to exclude this row: [NAN,7,7] Any idea how to do that? Many thanks
T=[1,2,3;4,5,6;7,8,9;1,2,3;4,5,6;7,8,9; NAN,7,7;4,5,6;7,8,9]
  1 commentaire
Bob Thompson
Bob Thompson le 3 Oct 2018
I would suggest using an isnan check. Not entirely sure how it will treat an entire row, but a place to start.
T=[1,2,3;4,5,6;7,8,9;1,2,3;4,5,6;7,8,9; NAN,7,7;4,5,6;7,8,9];
T = T(~isnan(T),:);
I suspect you will need:
T = T(~isnan(T(:,1)),:);

Connectez-vous pour commenter.

Réponse acceptée

the cyclist
the cyclist le 3 Oct 2018
Assuming that what you want is to exclude any row with a NaN in any position, then either
T = T(all(~isnan(T),2),:);
or
T(any(isnan(T),2),:) = [];
will do the job.
  1 commentaire
D.J
D.J le 3 Oct 2018
There was a problem with the first option, but the 2nd one worked perfectly well. Thank you very much.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Logical 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!

Translated by