Duplicating an entire vector

3 次查看(过去 30 天)
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
You almost got it. Try
repmat(A,[1 3])

更多回答(1 个)

Davide Masiello
Davide Masiello 2022-11-8
A=[1 2 3 4];
repmat(A,1,3)
ans = 1×12
1 2 3 4 1 2 3 4 1 2 3 4

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

产品


版本

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by