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

3 次查看(过去 30 天)
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?

采纳的回答

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

更多回答(1 个)

Fangjun Jiang
Fangjun Jiang 2019-9-4
编辑:Fangjun Jiang 2019-9-4
a=diff(i)
find(a==1)
find(a==-1)
adjust by 1

类别

Help CenterFile Exchange 中查找有关 Modulation 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by