count number with continuous numbers of 1's ?

1 Ansicht (letzte 30 Tage)
MUKESH KUMAR
MUKESH KUMAR am 31 Aug. 2018
Beantwortet: Stephen23 am 31 Aug. 2018
I had a matrix A=[0 0 1 1 1 1 0 0 0 1 1 0 0 1 0 0 1 0 0 0 1 1 1 0 0] like this , now I want a matrix B in which B(3)=1,next B(10)=1,B(14)=1 and similarly B(17)=1,B(21)=1 and rest are zeros means B gets value 1 when A first get 1.

Akzeptierte Antwort

Stephen23
Stephen23 am 31 Aug. 2018
>> B = [0,diff(A)>0]
B =
0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0

Weitere Antworten (0)

Kategorien

Mehr zu Operating on Diagonal Matrices finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by