Borrar filtros
Borrar filtros

How to find vector indexes without for loops

1 visualización (últimos 30 días)
Hamid Bakht
Hamid Bakht el 30 de Nov. de 2016
Comentada: David Goodmanson el 30 de Nov. de 2016
i have a vector matrix for example [20,3,56,7,8,96,52,22] and i have another value x=8. now i wanna find the index number of x in that vector without using for or while loop thank you for your help

Respuestas (1)

Guillaume
Guillaume el 30 de Nov. de 2016
[~, index] = ismember(8, [20, 3, 56, 7, 8, 96, 52, 22]);
or
index = find([20, 3, 56, 7, 8, 96, 52, 22] == 8);

Categorías

Más información sobre Matrix Indexing en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by