How Matlab calculate randsample using randsample function

20 次查看(过去 30 天)
Hi
I need to understand the method of random selection (without replacement) (MATLAB 2019b); i mean behind this function how the algorithm works?
Knowing that i have used this:

采纳的回答

Adam Danz
Adam Danz 2020-7-14
编辑:Adam Danz 2020-8-12
randsample(n,k) or randsample(population,k) merely creates a random permutation of your data (1:n or population) using randperm.
So the question becomes, how does the randperm function work?
You're in luck because it's explaind in the randperm documentation page. See the "Tips" section.
You'll see that randperm uses a uniform pseudorandom number generator that can have different internal settings and states. There are several types of random number generators. See the table:
To determine which one you're using, run
rng
Example output
>> rng
ans =
struct with fields:
Type: 'twister' % <------
Seed: 9999
State: [625×1 uint32]
For example, "twister" is defined by the mt19937ar generator which is fully described in the link above and contains citations to primary literature, depending on how far down the rabbit hole you want to go. You can also google these things and find lots of background information such as this Wiki article on the Mersenne Twister refenced in the code above.
To summarize, the randsample merely resamples or subsamples your data using randperm without replacement (unless the replacement flag is set to true). The random selection within randperm is controlled by the random number generator you're using which can be determined by running rng().
Also see this general list of topics regarding Matlab random number generation.
  4 个评论
Adam Danz
Adam Danz 2020-7-14
No problem. I'm not sure what you're expecting to find.
If you're trying to reproduce randomized results, you just need to set the rng seed at the beginning of your function / script.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Random Number Generation 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by