how to find the line number of a point in a vector

4 views (last 30 days)
I have a vector i=[0 0 1 1 1 1 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 1 1 1 1 0 0 0 0].
What can I use to find in which line number starts and ends number 1 each time?

Accepted Answer

madhan ravi
madhan ravi on 4 Sep 2019
Start = strfind([0,ii],[0 1])
End = strfind([ii,0],[1 0])

More Answers (1)

Fangjun Jiang
Fangjun Jiang on 4 Sep 2019
Edited: Fangjun Jiang on 4 Sep 2019
a=diff(i)
find(a==1)
find(a==-1)
adjust by 1

Community Treasure Hunt

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

Start Hunting!