How Matlab calculate randsample using randsample function

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:

 Respuesta aceptada

Adam Danz
Adam Danz el 14 de Jul. de 2020
Editada: Adam Danz el 12 de Ag. de 2020
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 comentarios

but i still don't understand what does it mean by " uses a uniform pseudorandom number generator that can have different internal settings and states" .
for example in my case i have used this to pick 1000 Anchors form 9000 samples:
rng('default')
for it = 1:5
index = randsample(1:length(X{it}), 1000);
Anchor{it} = X{it}(index,:);
Thanks in advance
Adam Danz
Adam Danz el 14 de Jul. de 2020
Editada: Adam Danz el 14 de Jul. de 2020
I'm not sure what I could add without repeating myself.
The 2nd link covers the different internal settings and states.
The rng function tells you what settings you're using.
Then you can go back to the 2nd link and read some more about the internal states you're using. There are footnotes in that link pointing to the primary literature behind each method.
That's the path you need to go down to understand it deeper. I'd be glad to discuss more about something specific.
I'll add this link to my answer as well; it's a general list of topics on Matlab rng.
Thanks a lot
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.

Iniciar sesión para comentar.

Más respuestas (0)

Preguntada:

el 14 de Jul. de 2020

Editada:

el 12 de Ag. de 2020

Community Treasure Hunt

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

Start Hunting!

Translated by