Get both values and indices
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Md. Al-Imran Abir
le 3 Déc 2022
Réponse apportée : Dyuman Joshi
le 3 Déc 2022
I am trying to get the indices and values from a vector based on a condition. I used find for that but the values it returning are logical values. How can I get actual values? An example is:
X = [4; 5; 1; 0; -7; 3; 0; 1; -4];
[row, ~, val] = find(X>0 & X<6)
I want val to have 4 5 1 3 1
0 commentaires
Réponse acceptée
Dyuman Joshi
le 3 Déc 2022
X = [4; 5; 1; 0; -7; 3; 0; 1; -4];
row = find(X>0 & X<6)
val = X(row)
0 commentaires
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!