How can I find the indices of a vector?

16 vues (au cours des 30 derniers jours)
Francesco
Francesco le 25 Fév 2014
Commenté : Francesco le 25 Fév 2014
If I have a row vector,what command allows me to find the indexes that exceed a certain value that I want as a threshold. For example:
A =
0.1222
0.1350
0.1759
0.1110
0.1015
0.2599
0.1465
I would like in output the indices of the value grater or equal than 0.123, for example.

Réponse acceptée

Mischa Kim
Mischa Kim le 25 Fév 2014
Modifié(e) : Mischa Kim le 25 Fév 2014
Use
ind = find(A >= 0.123)
  1 commentaire
Francesco
Francesco le 25 Fév 2014
And If I want to extract some the numeric value of an 19x2 double array (for example) according to the number of the ind variable how can I do?

Connectez-vous pour commenter.

Plus de réponses (1)

Thomas
Thomas le 25 Fév 2014
Modifié(e) : Thomas le 25 Fév 2014
[r,c]=find(A>=0.123)

Catégories

En savoir plus sur Matrices and Arrays dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by