Effacer les filtres
Effacer les filtres

Step matrix where each value is repeated

9 vues (au cours des 30 derniers jours)
Ben Worrall
Ben Worrall le 22 Avr 2021
Commenté : Star Strider le 22 Avr 2021
1) I want to create a 1xN matrix where it increases in steps however each step is repeated x amount of times e.g. [0 0 0 1 1 1 2 2 2 3 3 3 4 4 4 5 5 5].
In my specific case it will start at 0 go up in steps of 250 and finish at 8000 but each value should be repeated 33 times.
2) I have a matrix that goes up in steps e.g [2 4 6 8], I want a new 1XN matrix that does the same steps but repeats X amount of times e.g [2 4 6 8 2 4 6 8 2 4 6 8...]
In my specific case it will start at 0 go up in steps of 800 until 8000 then go back to 0 and repeat 33 times.
Thanks in advance :)

Réponse acceptée

Star Strider
Star Strider le 22 Avr 2021
Use the repelem function (introduced in R2015a).
  3 commentaires
Ben Worrall
Ben Worrall le 22 Avr 2021
actually sorry I have got this to work for scenario 1 but not 2
Star Strider
Star Strider le 22 Avr 2021
As always, my pleasure!
For the vector, the related function repmat is easier:
v2 = [2 4 6 8];
v2r = repmat(v2, 1, 3);
Here it repeats three times.
I’m not certain what to do with this:
‘In my specific case it will start at 0 go up in steps of 800 until 8000 then go back to 0 and repeat 33 times.
however the repmat function could be appropriate here as well.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Multidimensional Arrays dans Help Center et File Exchange

Produits


Version

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by