Repeating Matrix Element Until N Times
Afficher commentaires plus anciens
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 commentaires
Dirga Eka Putra L
le 23 Sep 2018
Modifié(e) : Dirga Eka Putra L
le 23 Sep 2018
Réponse acceptée
Plus de réponses (1)
dpb
le 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);
1 commentaire
Dirga Eka Putra L
le 23 Sep 2018
Catégories
En savoir plus sur Elementary Math dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
