Duplicating an entire vector
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
L'O.G.
el 8 de Nov. de 2022
Respondida: Chad Greene
el 8 de Nov. de 2022
How do you duplicate an entire vector? For example:
A=[1 2 3 4];
How do I get the following?
1 2 3 4 1 2 3 4 1 2 3 4
I thought repelem(A,3) would do the trick, but that replicates each element at a time.
0 comentarios
Respuesta aceptada
Más respuestas (1)
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!