Do you help me create a matrix?

1 回表示 (過去 30 日間)
Muhendisleksi
Muhendisleksi 2017 年 5 月 4 日
コメント済み: Muhendisleksi 2017 年 5 月 4 日
DNdog =
7
11
Each element of the "DNdog" matrix must repeat 3 times. How can I do that?
So I mean:
DNdog =
7
7
7
11
11
11
Is there a custom command for this?

採用された回答

Andrei Bobrov
Andrei Bobrov 2017 年 5 月 4 日
編集済み: Andrei Bobrov 2017 年 5 月 4 日
out = repelem(DNdog,3) ;
or
out = kron(DNdog,[1;1;1]);
  1 件のコメント
Muhendisleksi
Muhendisleksi 2017 年 5 月 4 日
thanks.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatrices and Arrays についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by