Repeating elements in a vector
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Furkan Sencer Kaçar
el 20 de Oct. de 2023
Comentada: Furkan Sencer Kaçar
el 20 de Oct. de 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)
0 comentarios
Respuesta aceptada
Más respuestas (1)
William Rose
el 20 de Oct. de 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)
OK.
Ver también
Categorías
Más información sobre Logical 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!