Info

This question is closed. Reopen it to edit or answer.

finding logical index greater than 25

1 view (last 30 days)
Systematically Neural
Systematically Neural on 22 Feb 2018
Closed: Stephen23 on 22 Feb 2018
I am looking to find repeats greater than 25 in vector of logical indexing. Does anyone have any suggestions or ideas?

Answers (1)

Guillaume
Guillaume on 22 Feb 2018
Edited: Guillaume on 22 Feb 2018
sequencestarts = [1, find(diff(yourlogicalvector))]; %assuming a row vector
sequencelengths = diff([sequencestarts, numel(yourlogicalvector)+1]);
wantedstarts = sequencestarts(sequencelengths > 25)

This question is closed.

Community Treasure Hunt

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

Start Hunting!