How to find locations of multiple values within a matrix.

53 次查看(过去 30 天)
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

采纳的回答

Ahmed
Ahmed 2015-12-30
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 ])),

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Structures 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by