Clear Filters
Clear Filters

Create copies of each row of an array

2 views (last 30 days)
Is there a way to copy each row of an array one after another for example if I had
A =
1 2 3 4
5 6 7 8
how can I make it into
A =
1 2 3 4
1 2 3 4
5 6 7 8
5 6 7 8

Accepted Answer

Andrei Bobrov
Andrei Bobrov on 30 Nov 2016
Edited: Andrei Bobrov on 30 Nov 2016
kron(A,[1;1])
or
repelem(A,2,1)

More Answers (0)

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!