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

2 Ansichten (letzte 30 Tage)
gjashta
gjashta am 4 Sep. 2019
Kommentiert: gjashta am 4 Sep. 2019
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?

Akzeptierte Antwort

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

Weitere Antworten (1)

Fangjun Jiang
Fangjun Jiang am 4 Sep. 2019
Bearbeitet: Fangjun Jiang am 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!

Translated by