Randperm generating the same sequence of permutation
4 次查看(过去 30 天)
显示 更早的评论
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
0 个评论
回答(2 个)
Azzi Abdelmalek
2015-6-17
编辑:Azzi Abdelmalek
2015-6-17
for k=1:3
out{k}=randperm(10,5)
end
celldisp(out)
James Tursa
2015-6-17
Are you resetting the random number generator in between iterations?
4 个评论
Guillaume
2015-6-17
You can use two different RandStream, one for the random sequence generation, one for randperm.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Get Started with Statistics and Machine Learning Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!