Effacer les filtres
Effacer les filtres

Find first row with certain value in x2 array

3 vues (au cours des 30 derniers jours)
Gevin Schaeffer
Gevin Schaeffer le 7 Juin 2021
Commenté : Gevin Schaeffer le 8 Juin 2021
I have an 300x2 array in which I need to find a certain numbert in colum 1, e.g. 10. Once the number is found I need to extract the corresponding value in colum 2.
  1 commentaire
dpb
dpb le 8 Juin 2021
Read on logical indexing ...

Connectez-vous pour commenter.

Réponse acceptée

Chunru
Chunru le 8 Juin 2021
idx = A(:, 1) == 10; % find the index that 1st column = 10
b = A(idx, 2); % extract the corresponding data in 2nd column
Or in one line
b = A(A(:,1)==10, 2);
  1 commentaire
Gevin Schaeffer
Gevin Schaeffer le 8 Juin 2021
Thanks :) ! it is really that simple. I literally just started with MATLAB

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Tags

Produits


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by