Online Algebra Calculator
Many of users do not use powerful Maxima computer algebra system for systematic work, but for ad hoc algebraic calculations – equations, functions, matrixes, etc. only. To do this job, it is not useful to download the whole application from a web site.
Function: make_random_state (<n>)
Function: make_random_state (<s>)
Function: make_random_state (true)
Function: make_random_state (false) A random state object represents the state of the random number generator. The state comprises 627 32-bit words.
make_random_state (<n>) returns a new random state object created from an integer seed value equal to <n> modulo 2^32. <n> may be negative.
make_random_state (<s>) returns a copy of the random state <s>.
make_random_state (true) returns a new random state object, using the current computer clock time as the seed.
make_random_state (false) returns a copy of the current state of the random number generator.
(%o1) true (%i2)
s1: make_random_state...
set_random_state (s1);
makelist(random(5), i...