i have two vectors X and Y:
X=[0 0 0 1 1 1 1 0 0 1 1 0 0 0 1 1 1 1]
Y=[3 6 5]
i want to creat vector Z
Z=[0 0 0 3 3 3 3 0 0 6 6 0 0 0 5 5 5 5]

댓글 수: 4

benghenia aek
benghenia aek 2019년 1월 30일
please can anyone solves this problem for me?
Fangjun Jiang
Fangjun Jiang 2019년 1월 30일
You got to provide some logic or background at least, right?
benghenia aek
benghenia aek 2019년 1월 30일
Fangjun Jiang if you have answere to my question then give it to me please
Walter Roberson
Walter Roberson 2019년 1월 30일

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

 채택된 답변

Andrei Bobrov
Andrei Bobrov 2019년 1월 30일

1 개 추천

X=[0 0 0 1 1 1 1 0 0 1 1 0 0 0 1 1 1 1];
Y=[3 6 5];
Y2 = [0,Y];
out = Y2(bwlabel(X) + 1);

추가 답변 (0개)

카테고리

태그

아직 태그를 입력하지 않았습니다.

질문:

2019년 1월 30일

편집:

2019년 1월 30일

Community Treasure Hunt

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

Start Hunting!

Translated by