how to fix a sequence generated using randperm

I am trying to generate a sequence of numbers using randperm, is there a way I can fix the sequence generated like for example we can use rng for randi.

 채택된 답변

Walter Roberson
Walter Roberson 2018년 6월 2일

1 개 추천

randperm() uses rand() internally, so rng() will work.

댓글 수: 3

Foram Sanghavi
Foram Sanghavi 2018년 6월 2일
편집: Foram Sanghavi 2018년 6월 2일
I have tried that but it did not work, but it would be great if you could put in a sample code to show what you said, just to be sure if I coded it correctly. Thank you
>> rng(55)
>> randperm(18,5)
ans =
14 1 4 15 7
>> rng(55)
>> randperm(18,5)
ans =
14 1 4 15 7
Thank you so much, I was not setting the seed in rng, hence was not getting the same answer.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

태그

Community Treasure Hunt

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

Start Hunting!

Translated by