create a vector of repeated different values and different repetitions

4 vues (au cours des 30 derniers jours)
hello,
i have data that looks like this
Value repetition
1 5
3 2
5 3
6 1
10 4
i want to create a vector that looks like this
1 1 1 1 1 3 3 5 5 5 6 10 10 10 10
so basically, repeats the numbers in Value colum n repititions.
can anyone please help? thanks

Réponse acceptée

Steven Lord
Steven Lord le 11 Mar 2021
Take a look at the repelem function.
  1 commentaire
Mohammad Aljarrah
Mohammad Aljarrah le 11 Mar 2021
Modifié(e) : Mohammad Aljarrah le 11 Mar 2021
it worked, thanks
z = repelem (a(:,1), b(:,1));
gievn that a and b are column vectors

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Matrices and Arrays dans Help Center et File Exchange

Produits


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by