|
11 | 11 | options: Object (optional)
|
12 | 12 | Options.
|
13 | 13 |
|
14 |
| - options.seed: integer|ArrayLikeObject<integer> (optional) |
15 |
| - Pseudorandom number generator seed. The seed may be either a positive |
16 |
| - signed 32-bit integer on the interval `[1, 2147483646]` or, for |
17 |
| - arbitrary length seeds, an array-like object containing signed 32-bit |
18 |
| - integers. |
19 |
| - |
20 |
| - options.state: Int32Array (optional) |
21 |
| - Pseudorandom number generator state. If provided, the `seed` option is |
22 |
| - ignored. |
23 |
| - |
24 |
| - options.copy: boolean (optional) |
25 |
| - Boolean indicating whether to copy a provided pseudorandom number |
26 |
| - generator state. Setting this option to `false` allows sharing state |
27 |
| - between two or more pseudorandom number generators. Setting this option |
28 |
| - to `true` ensures that a returned generator has exclusive control over |
29 |
| - its internal state. Default: true. |
30 |
| - |
31 | 14 | options.dtype: string (optional)
|
32 | 15 | Output array data type. Default: 'float64'.
|
33 | 16 |
|
|
53 | 36 | options: Object (optional)
|
54 | 37 | Options.
|
55 | 38 |
|
56 |
| - options.seed: integer|ArrayLikeObject<integer> (optional) |
57 |
| - Pseudorandom number generator seed. The seed may be either a positive |
58 |
| - signed 32-bit integer on the interval `[1, 2147483646]` or, for |
59 |
| - arbitrary length seeds, an array-like object containing signed 32-bit |
60 |
| - integers. |
61 |
| - |
62 |
| - options.state: Int32Array (optional) |
63 |
| - Pseudorandom number generator state. If provided, the `seed` option is |
64 |
| - ignored. |
65 |
| - |
66 |
| - options.copy: boolean (optional) |
67 |
| - Boolean indicating whether to copy a provided pseudorandom number |
68 |
| - generator state. Setting this option to `false` allows sharing state |
69 |
| - between two or more pseudorandom number generators. Setting this option |
70 |
| - to `true` ensures that a returned generator has exclusive control over |
71 |
| - its internal state. Default: true. |
72 |
| - |
73 | 39 | options.dtype: string (optional)
|
74 | 40 | Output array data type. Default: 'float64'.
|
75 | 41 |
|
|
0 commit comments