Difference between revisions of "Sample Command"

From GeoGebra Manual
Jump to: navigation, search
m (Bot: Automated text replacement (-{{command +{{command|cas=true))
m (Text replace - "<div class="box info"> 48px|left This page is part of the official manual for print and pdf. For structural reasons normal users can't edit this page. If you found any errors on this page please contact )
Line 1: Line 1:
<noinclude>{{Manual Page|version=4.0}}</noinclude>
+
<noinclude>{{Manual Page|version=4.2}}</noinclude>
 
{{command|cas=true|statistics}}
 
{{command|cas=true|statistics}}
 
;Sample[ <List L>, <Size n> ]
 
;Sample[ <List L>, <Size n> ]

Revision as of 21:23, 9 March 2013



Sample[ <List L>, <Size n> ]
Returns list of n randomly chosen elements of L; elements can be chosen several times.
Example:
Sample[{1, 2, 3, 4, 5}, 5] yields for example {1, 2, 1, 5, 4}.
Sample[ <List L>, <Size n>, <Boolean for replacement> ]
Returns list of n randomly chosen elements of L. Elements can be chosen several times if and only if the last parameter is true.
Example:
Sample[{1, 2, 3, 4, 5}, 5, true] yields for example {2, 3, 3, 4, 5}.

CAS Syntax

Sample[ <List L>, <Size n> ]
Returns list of n randomly chosen elements of L; elements can be chosen several times.
Example:
Sample[{-5, 2, a, 7, c}, 3] yields for example {a, 7, -5}.
Sample[ <List L>, <Size n>, <Boolean for replacement> ]
Returns list of n randomly chosen elements of L. Elements can be chosen several times if and only if the last parameter is true.
Example:
The list can include lists as well: Let List1 be {1, 2, 3}.
Sample[{List1, 4, 5, 6, 7, 8}, 3, false] yields for example {6, {1, 2, 3}, 4}.
© 2024 International GeoGebra Institute