Repeating elements in a vector

1 vue (au cours des 30 derniers jours)
Furkan Sencer Kaçar
Furkan Sencer Kaçar le 20 Oct 2023
Hi, i want my following vector:
A = [0,1; 1; 5; 10; 20]
to be
A = [0,1; 1; 5; 10; 20;0,1; 1; 5; 10; 20;0,1; 1; 5; 10; 20; ... ]
(50 times repeated)

Réponse acceptée

Mahmoud
Mahmoud le 20 Oct 2023
Modifié(e) : Mahmoud le 20 Oct 2023
A = [0; 1; 5; 10; 20]; % Vector declaration
B = repmat(A, 50, 1); % Replicate Fifty times
  1 commentaire
Furkan Sencer Kaçar
Furkan Sencer Kaçar le 20 Oct 2023
Thank you very much :)

Connectez-vous pour commenter.

Plus de réponses (1)

William Rose
William Rose le 20 Oct 2023
A = [0,1; 1; 5; 10; 20]
is not valid because it uses a comma as well as semicolons. I assume you meant to write
A = [0; 1; 1; 5; 10; 20];
Then do
A=repmat(A,50,1);
Check:
size(A)
ans = 1×2
300 1
OK.
  1 commentaire
Furkan Sencer Kaçar
Furkan Sencer Kaçar le 20 Oct 2023
Thanks a lot :)

Connectez-vous pour commenter.

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Produits


Version

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by