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);

1 件のコメント

benghenia aek
benghenia aek 2019 年 1 月 30 日
Andrei Bobrov thank you very much for your answere

サインインしてコメントする。

その他の回答 (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