Difference between revisions of "RandomUniform Command"

From GeoGebra Manual
Jump to: navigation, search
(new 4.4 syntax: ;RandomUniform[ <Min>, <Max>, <Number of Samples n> ])
Line 6: Line 6:
 
;RandomUniform[ <Min>, <Max>, <Number of Samples n> ]
 
;RandomUniform[ <Min>, <Max>, <Number of Samples n> ]
 
:Returns a list of ''n'' random real numbers from [[w:Uniform distribution (continuous)|uniform distribution]] on interval [''min'', ''max''].
 
:Returns a list of ''n'' random real numbers from [[w:Uniform distribution (continuous)|uniform distribution]] on interval [''min'', ''max''].
 +
:{{Example|1=<div><code><nowiki>RandomUniform[0, 1, 3]</nowiki></code> returns a list of three random numbers between ''0'' and ''1''</div>}}
 
==CAS Syntax==
 
==CAS Syntax==
 
;RandomUniform[ <Min>, <Max> ]
 
;RandomUniform[ <Min>, <Max> ]
 
:Returns random real number from [[w:Uniform distribution (continuous)|uniform distribution]] on interval [''min'', ''max''].
 
:Returns random real number from [[w:Uniform distribution (continuous)|uniform distribution]] on interval [''min'', ''max''].
 
:{{Example|1=<div><code><nowiki>RandomUniform[0, 1]</nowiki></code> returns a random number between ''0'' and ''1''</div>}}
 
:{{Example|1=<div><code><nowiki>RandomUniform[0, 1]</nowiki></code> returns a random number between ''0'' and ''1''</div>}}
 +
 
{{Note|1=<code>RandomUniform[0,1]</code> is equivalent to <code>random()</code> (see [[Predefined Functions and Operators]]).}}
 
{{Note|1=<code>RandomUniform[0,1]</code> is equivalent to <code>random()</code> (see [[Predefined Functions and Operators]]).}}
 +
 
{{Note|1= See also [[SetSeed Command|SetSeed]], [[RandomBetween Command|RandomBetween]], [[RandomElement Command|RandomElement]],  [[RandomBinomial Command|RandomBinomial]], [[RandomNormal Command|RandomNormal ]], [[RandomPoisson Command|RandomPoisson ]] commands.}}
 
{{Note|1= See also [[SetSeed Command|SetSeed]], [[RandomBetween Command|RandomBetween]], [[RandomElement Command|RandomElement]],  [[RandomBinomial Command|RandomBinomial]], [[RandomNormal Command|RandomNormal ]], [[RandomPoisson Command|RandomPoisson ]] commands.}}

Revision as of 14:31, 10 June 2014



RandomUniform[ <Min>, <Max> ]
Returns random real number from uniform distribution on interval [min, max].
Example:
RandomUniform[0, 1] returns a random number between 0 and 1
RandomUniform[ <Min>, <Max>, <Number of Samples n> ]
Returns a list of n random real numbers from uniform distribution on interval [min, max].
Example:
RandomUniform[0, 1, 3] returns a list of three random numbers between 0 and 1

CAS Syntax

RandomUniform[ <Min>, <Max> ]
Returns random real number from uniform distribution on interval [min, max].
Example:
RandomUniform[0, 1] returns a random number between 0 and 1


Note: RandomUniform[0,1] is equivalent to random() (see Predefined Functions and Operators).
© 2024 International GeoGebra Institute