Filter löschen
Filter löschen

How to find locations of multiple values within a matrix.

38 Ansichten (letzte 30 Tage)
Pavel
Pavel am 30 Dez. 2015
Kommentiert: Dooyoung Kim am 5 Sep. 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

Akzeptierte Antwort

Ahmed
Ahmed am 30 Dez. 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 ])),

Weitere Antworten (0)

Kategorien

Mehr zu Structures finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by