How to do this below?

조회 수: 1 (최근 30일)
Mibang
Mibang 2024년 2월 6일
댓글: Voss 2024년 2월 6일
Suppose you have a binary sequence:
a = [0 0 1 1 1 0 0 1 1 1 1 0 0 0];
And, how can you abtain a sequence b from a?
b = [0 0 3 0 0 0 0 4 0 0 0 0 0 0];
That is, place the sum of the consequtive ones at the first location of the consecutive ones.
And, make zeros for all the other locations of ones.
Thank you,

채택된 답변

Voss
Voss 2024년 2월 6일
One way:
a = [0 0 1 1 1 0 0 1 1 1 1 0 0 0]
a = 1x14
0 0 1 1 1 0 0 1 1 1 1 0 0 0
b = zeros(1,numel(a));
s_idx = strfind([0 a],[0 1]);
e_idx = strfind([a 0],[1 0]);
b(s_idx) = e_idx-s_idx+1;
b
b = 1x14
0 0 3 0 0 0 0 4 0 0 0 0 0 0
  댓글 수: 2
Mibang
Mibang 2024년 2월 6일
Genius! thanks.
Voss
Voss 2024년 2월 6일
You're welcome!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Characters and Strings에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by