What is the use of state in randseed() function?

10 Ansichten (letzte 30 Tage)
Sayantan Sur
Sayantan Sur am 7 Sep. 2017
Beantwortet: José-Luis am 7 Sep. 2017
out = randseed(state,m,n,rmin,rmax) What is the use of state in randseed? And how it makes a difference to the output value?

Antworten (1)

José-Luis
José-Luis am 7 Sep. 2017
Random numbers in Matlab are not random. They are pseudo-random: they are based on deterministic algorithms.
You can consider the seed as the starting point for the random number generation.
If you use the same starting point, you will get the same sequence of random numbers.
Just do an experiment.
Call rand two times. You get two different numbers.
Start Matlab. Call rand. Start Matlab. Call rand. You will get the same number: that's because the seed has been reset.

Kategorien

Mehr zu Encryption / Cryptography finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by