Filter löschen
Filter löschen

creating a variable to use for grouping data

1 Ansicht (letzte 30 Tage)
Rabeya
Rabeya am 20 Apr. 2012
I want to create a variable (a column vector) with a specific length (8000), containing values 1 to 10 randomly assigned and with a specific average repetition of each number (say 800). How to do this?

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 20 Apr. 2012
If the number of repetitions is to be exact:
t = repmat(1:10.', 800, 1);
t(randperm(length(t)))
If the repetitions need not be exact:
1 + floor(10 * rand(8000,1))
  2 Kommentare
Rabeya
Rabeya am 20 Apr. 2012
Very impressive!
Walter Roberson
Walter Roberson am 20 Apr. 2012
Opps, I had an extra layer of repmat() on the first solution! I have edited.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Time Series Events finden Sie in Help Center und File Exchange

Tags

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by