Randperm generating the same sequence of permutation

5 Ansichten (letzte 30 Tage)
Saikath Bhattacharya
Saikath Bhattacharya am 17 Jun. 2015
I am using randperm to generate different random permutations (subset of the data) from a data set. However even after 2 iterations it is generating the same combination of the number. For eg: the desired output would be like p={1,3,5,6,9,10},{4,6,7,2,1,3}... however i am getting p={1,4,5,7,8},{1,4,5,7,8}. its the same sequence i am getting.
saikath

Antworten (2)

Azzi Abdelmalek
Azzi Abdelmalek am 17 Jun. 2015
Bearbeitet: Azzi Abdelmalek am 17 Jun. 2015
for k=1:3
out{k}=randperm(10,5)
end
celldisp(out)
  1 Kommentar
Saikath Bhattacharya
Saikath Bhattacharya am 17 Jun. 2015
i used the for loop to generate different subsets and selected randomly from them. Thanks a lot

Melden Sie sich an, um zu kommentieren.


James Tursa
James Tursa am 17 Jun. 2015
Are you resetting the random number generator in between iterations?
  4 Kommentare
Guillaume
Guillaume am 17 Jun. 2015
You can use two different RandStream, one for the random sequence generation, one for randperm.
Saikath Bhattacharya
Saikath Bhattacharya am 17 Jun. 2015
Thanks a lot. i figured it a different approach, i generated 100 random subjects. and selecting random subject at a time and kept it in an iteration.
Thanks a lot

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Random Number Generation finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by