Duplicating an entire vector

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.

 Accepted Answer

More Answers (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

Categories

Products

Release

R2021b

Asked:

on 8 Nov 2022

Answered:

on 8 Nov 2022

Community Treasure Hunt

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

Start Hunting!