Repeat elements in an array for certain number of cycles
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
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;]
0 comentarios
Respuestas (1)
Ver también
Categorías
Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!