Repeating Matrix Element Until N Times
1 view (last 30 days)
Show older comments
Dirga Eka Putra L
on 23 Sep 2018
Commented: Dirga Eka Putra L
on 23 Sep 2018
Excuse me everyone, I want ask that how to repeating the matrix element like this example :
Example: y = [1; 2; 3; 4] and then I want the output like this (for example until N=7) :
Thanks
2 Comments
Accepted Answer
More Answers (1)
dpb
on 23 Sep 2018
Just one of many possible ways...
L=length(y);
N=7;
x=repmat(y,ceil(N/L),1);
x=x(1:N);
See Also
Categories
Find more on Creating and Concatenating Matrices 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!