Duplicating an entire vector

4 Ansichten (letzte 30 Tage)
L'O.G.
L'O.G. am 8 Nov. 2022
Beantwortet: Chad Greene am 8 Nov. 2022
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.

Akzeptierte Antwort

Chad Greene
Chad Greene am 8 Nov. 2022
You almost got it. Try
repmat(A,[1 3])

Weitere Antworten (1)

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

Kategorien

Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange

Produkte


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by