finding logical index greater than 25
Info
This question is closed. Reopen it to edit or answer.
Show older comments
I am looking to find repeats greater than 25 in vector of logical indexing. Does anyone have any suggestions or ideas?
Answers (1)
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!