How do you duplicate an entire vector? For example:
A=[1 2 3 4];
How do I get the following?
1 2 3 4 1 2 3 4 1 2 3 4
I thought repelem(A,3) would do the trick, but that replicates each element at a time.

 採用された回答

Chad Greene
Chad Greene 2022 年 11 月 8 日

0 投票

You almost got it. Try
repmat(A,[1 3])

その他の回答 (1 件)

Davide Masiello
Davide Masiello 2022 年 11 月 8 日

1 投票

A=[1 2 3 4];
repmat(A,1,3)
ans = 1×12
1 2 3 4 1 2 3 4 1 2 3 4

カテゴリ

ヘルプ センター および File ExchangeStartup and Shutdown についてさらに検索

製品

リリース

R2021b

質問済み:

2022 年 11 月 8 日

回答済み:

2022 年 11 月 8 日

Community Treasure Hunt

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

Start Hunting!

Translated by