Generate a vector like [5,4,4,3,3​,3,2,2,2,2​,1,1,1,1,1​]

1 visualización (últimos 30 días)
Izan Segarra
Izan Segarra el 19 de Feb. de 2019
Comentada: Guillaume el 20 de Feb. de 2019
How can I generate a vector like [5,4,4,3,3,3,2,2,2,2,1,1,1,1,1] without a loop?
  5 comentarios
Izan Segarra
Izan Segarra el 19 de Feb. de 2019
I have used this code: odds = repelem([5,4,3,2,1],[1:5]);
It's just what I was looking for. Thank you.
Guillaume
Guillaume el 20 de Feb. de 2019
The square brackets are unnecessary.
odds = repelem(5:-1:1, 1:5)

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre Matrices and Arrays en Help Center y File Exchange.

Productos


Versión

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by