I would like to pick the consecutive cells those satistfies my given condition
1 view (last 30 days)
Show older comments
Poorna Durga Geesupalli
on 11 May 2022
Commented: Poorna Durga Geesupalli
on 13 May 2022
I have a array of 122 by 10 data set. I have given the criteria to pick the cells whose values are greather than equal to 1.
Now I would like to pick the cells which satisfies the above condition and those satisfies cells are consecutively aranged.
For Ex: Cell 25,26,27,31 are satisfiying the above creiteria . But I wanted to highligh or list out the greter than or equal to 3 consecutive cells, which mean it has to highlight cell25,26,27
1 Comment
Matt J
on 11 May 2022
Consecutively along columns? And, to be clear, when you say "cell" you don't really mean a cell array, right?
Accepted Answer
Matt J
on 11 May 2022
Edited: Matt J
on 11 May 2022
You might benefit from downloading,
Then you can label consecutive groups of true elements with, e.g.,
a=rand(1,10)+randi([0,1],1,10)
G=groupTrue(a>1)
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!