Repeat elements in an array for certain number of cycles
1 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!