How to extract parts of an array by given logical conditions?

5 vues (au cours des 30 derniers jours)
Emerson De Souza
Emerson De Souza le 9 Juin 2014
Hi, I have an array, let's say
M=
1 1 0
1 2 0
1 3 1
2 1 0
2 2 1
2 3 1
and I would like to create a new array only with the case for which the value of the third column equals 1. Thus
N=
1 3 1
2 2 1
2 3 1

Réponse acceptée

Image Analyst
Image Analyst le 9 Juin 2014
Try this:
M=[...
1 1 0
1 2 0
1 3 1
2 1 0
2 2 1
2 3 1]
rowsToExtract = M(:,3)==1;
N = M(rowsToExtract,:)
  1 commentaire
Emerson De Souza
Emerson De Souza le 9 Juin 2014
Thank you Image Analyst,
your suggestion elegantly solved my problem.
Wish you a nice day
Emerson

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Data Distribution Plots 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