how to fix a sequence generated using randperm

2 次查看(过去 30 天)
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
randperm() uses rand() internally, so rng() will work.
  3 个评论
Walter Roberson
Walter Roberson 2018-6-2
>> rng(55)
>> randperm(18,5)
ans =
14 1 4 15 7
>> rng(55)
>> randperm(18,5)
ans =
14 1 4 15 7
Foram Sanghavi
Foram Sanghavi 2018-6-2
Thank you so much, I was not setting the seed in rng, hence was not getting the same answer.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Structures 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by