mirror of
https://github.com/josdejong/mathjs.git
synced 2025-12-08 19:46:04 +00:00
14 lines
332 B
JavaScript
14 lines
332 B
JavaScript
module.exports = {
|
|
'name': 'pickMultipleRandom',
|
|
'category': 'Probability',
|
|
'syntax': [
|
|
'pickMultipleRandom(array, number)'
|
|
],
|
|
'description':
|
|
'Pick a given number of random entries from a given array.',
|
|
'examples': [
|
|
'pickRandom([1, 3, 1, 6], 2)'
|
|
],
|
|
'seealso': ['random', 'randomInt', 'pickRandom']
|
|
};
|