Repeat elements in an array for certain number of cycles

I have a 61x1 array, G, I want to make a new array G_2, where the 61 elements of G are repeated for 5 cycles.
For example: G = [1; 2; 3; 4; 5] and G_2 = [1; 2; 3; 4; 5; 1; 2; 3; 4; 5; 1; 2; 3; 4; 5]
I've tried using the repelem function but it repeats the first element twice and then the second element twice and so on giving something like:
G_2 = [1; 1; 2; 2; 3; 3; 4; 4; 5; 5;]

Categories

Asked:

on 28 Dec 2017

Answered:

on 28 Dec 2017

Community Treasure Hunt

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

Start Hunting!