How can I find the indices of a vector?
13 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Francesco
el 25 de Feb. de 2014
Comentada: Francesco
el 25 de Feb. de 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.
0 comentarios
Respuesta aceptada
Mischa Kim
el 25 de Feb. de 2014
Editada: Mischa Kim
el 25 de Feb. de 2014
Use
ind = find(A >= 0.123)
Ver también
Categorías
Más información sobre Matrices and Arrays en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!