Finding row values given a position.
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Riley Heymann
le 25 Mar 2022
Modifié(e) : Riley Heymann
le 27 Mar 2022
After using the "find" function to get the position of a value in a matrix, how do I retreive the values in the corrosponding row?
1 commentaire
Réponse acceptée
Mathieu NOE
le 25 Mar 2022
hello
see example below :
use find with linear indices output (see the doc)
A = randn(5,3)
ind = find(A>0 & A<1)
B = A(ind)
2 commentaires
Rik
le 25 Mar 2022
I interpreted the question a bit differently:
A = randn(5,3)
[r,c]=find(A>0.7)
B = A(unique(r),:)
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Get Started with MATLAB 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!