Borrar filtros
Borrar filtros

How to find locations of multiple values within a matrix.

38 visualizaciones (últimos 30 días)
Pavel
Pavel el 30 de Dic. de 2015
Comentada: Dooyoung Kim el 5 de Sept. de 2018
Hi, I have an array of data repeating 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10...
I need to find the locations where values equal to 1, 4, 7, 10 are found to create a subsample using those locations.
In this case it will be position 1 4 7 10 11 14 17 20 and so on.
Please, help! Thanks, Pavel

Respuesta aceptada

Ahmed
Ahmed el 30 de Dic. de 2015
The function ismember is what you are looking for.
x=[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
y=find(ismember(x,[1, 4, 7, 10 ])),

Más respuestas (0)

Categorías

Más información sobre Structures 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