@stdlib/random-array 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/NOTICE +1 -1
- package/README.md +73 -4
- package/SECURITY.md +5 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +2 -2
- package/docs/types/index.d.ts +492 -13
- package/lib/index.js +198 -0
- package/package.json +116 -55
- package/CITATION.cff +0 -30
package/lib/index.js
CHANGED
|
@@ -45,6 +45,15 @@ var ns = {};
|
|
|
45
45
|
*/
|
|
46
46
|
setReadOnly( ns, 'arcsine', require( '@stdlib/random-array-arcsine' ) );
|
|
47
47
|
|
|
48
|
+
/**
|
|
49
|
+
* @name bernoulli
|
|
50
|
+
* @memberof ns
|
|
51
|
+
* @readonly
|
|
52
|
+
* @type {Function}
|
|
53
|
+
* @see {@link module:@stdlib/random/array/bernoulli}
|
|
54
|
+
*/
|
|
55
|
+
setReadOnly( ns, 'bernoulli', require( '@stdlib/random-array-bernoulli' ) );
|
|
56
|
+
|
|
48
57
|
/**
|
|
49
58
|
* @name beta
|
|
50
59
|
* @memberof ns
|
|
@@ -63,6 +72,42 @@ setReadOnly( ns, 'beta', require( '@stdlib/random-array-beta' ) );
|
|
|
63
72
|
*/
|
|
64
73
|
setReadOnly( ns, 'betaprime', require( '@stdlib/random-array-betaprime' ) );
|
|
65
74
|
|
|
75
|
+
/**
|
|
76
|
+
* @name binomial
|
|
77
|
+
* @memberof ns
|
|
78
|
+
* @readonly
|
|
79
|
+
* @type {Function}
|
|
80
|
+
* @see {@link module:@stdlib/random/array/binomial}
|
|
81
|
+
*/
|
|
82
|
+
setReadOnly( ns, 'binomial', require( '@stdlib/random-array-binomial' ) );
|
|
83
|
+
|
|
84
|
+
/**
|
|
85
|
+
* @name cauchy
|
|
86
|
+
* @memberof ns
|
|
87
|
+
* @readonly
|
|
88
|
+
* @type {Function}
|
|
89
|
+
* @see {@link module:@stdlib/random/array/cauchy}
|
|
90
|
+
*/
|
|
91
|
+
setReadOnly( ns, 'cauchy', require( '@stdlib/random-array-cauchy' ) );
|
|
92
|
+
|
|
93
|
+
/**
|
|
94
|
+
* @name chi
|
|
95
|
+
* @memberof ns
|
|
96
|
+
* @readonly
|
|
97
|
+
* @type {Function}
|
|
98
|
+
* @see {@link module:@stdlib/random/array/chi}
|
|
99
|
+
*/
|
|
100
|
+
setReadOnly( ns, 'chi', require( '@stdlib/random-array-chi' ) );
|
|
101
|
+
|
|
102
|
+
/**
|
|
103
|
+
* @name chisquare
|
|
104
|
+
* @memberof ns
|
|
105
|
+
* @readonly
|
|
106
|
+
* @type {Function}
|
|
107
|
+
* @see {@link module:@stdlib/random/array/chisquare}
|
|
108
|
+
*/
|
|
109
|
+
setReadOnly( ns, 'chisquare', require( '@stdlib/random-array-chisquare' ) );
|
|
110
|
+
|
|
66
111
|
/**
|
|
67
112
|
* @name cosine
|
|
68
113
|
* @memberof ns
|
|
@@ -81,6 +126,15 @@ setReadOnly( ns, 'cosine', require( '@stdlib/random-array-cosine' ) );
|
|
|
81
126
|
*/
|
|
82
127
|
setReadOnly( ns, 'discreteUniform', require( '@stdlib/random-array-discrete-uniform' ) );
|
|
83
128
|
|
|
129
|
+
/**
|
|
130
|
+
* @name erlang
|
|
131
|
+
* @memberof ns
|
|
132
|
+
* @readonly
|
|
133
|
+
* @type {Function}
|
|
134
|
+
* @see {@link module:@stdlib/random/array/erlang}
|
|
135
|
+
*/
|
|
136
|
+
setReadOnly( ns, 'erlang', require( '@stdlib/random-array-erlang' ) );
|
|
137
|
+
|
|
84
138
|
/**
|
|
85
139
|
* @name exponential
|
|
86
140
|
* @memberof ns
|
|
@@ -90,6 +144,24 @@ setReadOnly( ns, 'discreteUniform', require( '@stdlib/random-array-discrete-unif
|
|
|
90
144
|
*/
|
|
91
145
|
setReadOnly( ns, 'exponential', require( '@stdlib/random-array-exponential' ) );
|
|
92
146
|
|
|
147
|
+
/**
|
|
148
|
+
* @name f
|
|
149
|
+
* @memberof ns
|
|
150
|
+
* @readonly
|
|
151
|
+
* @type {Function}
|
|
152
|
+
* @see {@link module:@stdlib/random/array/f}
|
|
153
|
+
*/
|
|
154
|
+
setReadOnly( ns, 'f', require( '@stdlib/random-array-f' ) );
|
|
155
|
+
|
|
156
|
+
/**
|
|
157
|
+
* @name frechet
|
|
158
|
+
* @memberof ns
|
|
159
|
+
* @readonly
|
|
160
|
+
* @type {Function}
|
|
161
|
+
* @see {@link module:@stdlib/random/array/frechet}
|
|
162
|
+
*/
|
|
163
|
+
setReadOnly( ns, 'frechet', require( '@stdlib/random-array-frechet' ) );
|
|
164
|
+
|
|
93
165
|
/**
|
|
94
166
|
* @name gamma
|
|
95
167
|
* @memberof ns
|
|
@@ -99,6 +171,33 @@ setReadOnly( ns, 'exponential', require( '@stdlib/random-array-exponential' ) );
|
|
|
99
171
|
*/
|
|
100
172
|
setReadOnly( ns, 'gamma', require( '@stdlib/random-array-gamma' ) );
|
|
101
173
|
|
|
174
|
+
/**
|
|
175
|
+
* @name geometric
|
|
176
|
+
* @memberof ns
|
|
177
|
+
* @readonly
|
|
178
|
+
* @type {Function}
|
|
179
|
+
* @see {@link module:@stdlib/random/array/geometric}
|
|
180
|
+
*/
|
|
181
|
+
setReadOnly( ns, 'geometric', require( '@stdlib/random-array-geometric' ) );
|
|
182
|
+
|
|
183
|
+
/**
|
|
184
|
+
* @name gumbel
|
|
185
|
+
* @memberof ns
|
|
186
|
+
* @readonly
|
|
187
|
+
* @type {Function}
|
|
188
|
+
* @see {@link module:@stdlib/random/array/gumbel}
|
|
189
|
+
*/
|
|
190
|
+
setReadOnly( ns, 'gumbel', require( '@stdlib/random-array-gumbel' ) );
|
|
191
|
+
|
|
192
|
+
/**
|
|
193
|
+
* @name hypergeometric
|
|
194
|
+
* @memberof ns
|
|
195
|
+
* @readonly
|
|
196
|
+
* @type {Function}
|
|
197
|
+
* @see {@link module:@stdlib/random/array/hypergeometric}
|
|
198
|
+
*/
|
|
199
|
+
setReadOnly( ns, 'hypergeometric', require( '@stdlib/random-array-hypergeometric' ) );
|
|
200
|
+
|
|
102
201
|
/**
|
|
103
202
|
* @name invgamma
|
|
104
203
|
* @memberof ns
|
|
@@ -108,6 +207,42 @@ setReadOnly( ns, 'gamma', require( '@stdlib/random-array-gamma' ) );
|
|
|
108
207
|
*/
|
|
109
208
|
setReadOnly( ns, 'invgamma', require( '@stdlib/random-array-invgamma' ) );
|
|
110
209
|
|
|
210
|
+
/**
|
|
211
|
+
* @name kumaraswamy
|
|
212
|
+
* @memberof ns
|
|
213
|
+
* @readonly
|
|
214
|
+
* @type {Function}
|
|
215
|
+
* @see {@link module:@stdlib/random/array/kumaraswamy}
|
|
216
|
+
*/
|
|
217
|
+
setReadOnly( ns, 'kumaraswamy', require( '@stdlib/random-array-kumaraswamy' ) );
|
|
218
|
+
|
|
219
|
+
/**
|
|
220
|
+
* @name laplace
|
|
221
|
+
* @memberof ns
|
|
222
|
+
* @readonly
|
|
223
|
+
* @type {Function}
|
|
224
|
+
* @see {@link module:@stdlib/random/array/laplace}
|
|
225
|
+
*/
|
|
226
|
+
setReadOnly( ns, 'laplace', require( '@stdlib/random-array-laplace' ) );
|
|
227
|
+
|
|
228
|
+
/**
|
|
229
|
+
* @name levy
|
|
230
|
+
* @memberof ns
|
|
231
|
+
* @readonly
|
|
232
|
+
* @type {Function}
|
|
233
|
+
* @see {@link module:@stdlib/random/array/levy}
|
|
234
|
+
*/
|
|
235
|
+
setReadOnly( ns, 'levy', require( '@stdlib/random-array-levy' ) );
|
|
236
|
+
|
|
237
|
+
/**
|
|
238
|
+
* @name logistic
|
|
239
|
+
* @memberof ns
|
|
240
|
+
* @readonly
|
|
241
|
+
* @type {Function}
|
|
242
|
+
* @see {@link module:@stdlib/random/array/logistic}
|
|
243
|
+
*/
|
|
244
|
+
setReadOnly( ns, 'logistic', require( '@stdlib/random-array-logistic' ) );
|
|
245
|
+
|
|
111
246
|
/**
|
|
112
247
|
* @name lognormal
|
|
113
248
|
* @memberof ns
|
|
@@ -144,6 +279,15 @@ setReadOnly( ns, 'minstdShuffle', require( '@stdlib/random-array-minstd-shuffle'
|
|
|
144
279
|
*/
|
|
145
280
|
setReadOnly( ns, 'mt19937', require( '@stdlib/random-array-mt19937' ) );
|
|
146
281
|
|
|
282
|
+
/**
|
|
283
|
+
* @name negativeBinomial
|
|
284
|
+
* @memberof ns
|
|
285
|
+
* @readonly
|
|
286
|
+
* @type {Function}
|
|
287
|
+
* @see {@link module:@stdlib/random/array/negative-binomial}
|
|
288
|
+
*/
|
|
289
|
+
setReadOnly( ns, 'negativeBinomial', require( '@stdlib/random-array-negative-binomial' ) );
|
|
290
|
+
|
|
147
291
|
/**
|
|
148
292
|
* @name normal
|
|
149
293
|
* @memberof ns
|
|
@@ -153,6 +297,24 @@ setReadOnly( ns, 'mt19937', require( '@stdlib/random-array-mt19937' ) );
|
|
|
153
297
|
*/
|
|
154
298
|
setReadOnly( ns, 'normal', require( '@stdlib/random-array-normal' ) );
|
|
155
299
|
|
|
300
|
+
/**
|
|
301
|
+
* @name pareto1
|
|
302
|
+
* @memberof ns
|
|
303
|
+
* @readonly
|
|
304
|
+
* @type {Function}
|
|
305
|
+
* @see {@link module:@stdlib/random/array/pareto-type1}
|
|
306
|
+
*/
|
|
307
|
+
setReadOnly( ns, 'pareto1', require( '@stdlib/random-array-pareto-type1' ) );
|
|
308
|
+
|
|
309
|
+
/**
|
|
310
|
+
* @name poisson
|
|
311
|
+
* @memberof ns
|
|
312
|
+
* @readonly
|
|
313
|
+
* @type {Function}
|
|
314
|
+
* @see {@link module:@stdlib/random/array/poisson}
|
|
315
|
+
*/
|
|
316
|
+
setReadOnly( ns, 'poisson', require( '@stdlib/random-array-poisson' ) );
|
|
317
|
+
|
|
156
318
|
/**
|
|
157
319
|
* @name randu
|
|
158
320
|
* @memberof ns
|
|
@@ -162,6 +324,33 @@ setReadOnly( ns, 'normal', require( '@stdlib/random-array-normal' ) );
|
|
|
162
324
|
*/
|
|
163
325
|
setReadOnly( ns, 'randu', require( '@stdlib/random-array-randu' ) );
|
|
164
326
|
|
|
327
|
+
/**
|
|
328
|
+
* @name rayleigh
|
|
329
|
+
* @memberof ns
|
|
330
|
+
* @readonly
|
|
331
|
+
* @type {Function}
|
|
332
|
+
* @see {@link module:@stdlib/random/array/rayleigh}
|
|
333
|
+
*/
|
|
334
|
+
setReadOnly( ns, 'rayleigh', require( '@stdlib/random-array-rayleigh' ) );
|
|
335
|
+
|
|
336
|
+
/**
|
|
337
|
+
* @name t
|
|
338
|
+
* @memberof ns
|
|
339
|
+
* @readonly
|
|
340
|
+
* @type {Function}
|
|
341
|
+
* @see {@link module:@stdlib/random/array/t}
|
|
342
|
+
*/
|
|
343
|
+
setReadOnly( ns, 't', require( '@stdlib/random-array-t' ) );
|
|
344
|
+
|
|
345
|
+
/**
|
|
346
|
+
* @name triangular
|
|
347
|
+
* @memberof ns
|
|
348
|
+
* @readonly
|
|
349
|
+
* @type {Function}
|
|
350
|
+
* @see {@link module:@stdlib/random/array/triangular}
|
|
351
|
+
*/
|
|
352
|
+
setReadOnly( ns, 'triangular', require( '@stdlib/random-array-triangular' ) );
|
|
353
|
+
|
|
165
354
|
/**
|
|
166
355
|
* @name uniform
|
|
167
356
|
* @memberof ns
|
|
@@ -171,6 +360,15 @@ setReadOnly( ns, 'randu', require( '@stdlib/random-array-randu' ) );
|
|
|
171
360
|
*/
|
|
172
361
|
setReadOnly( ns, 'uniform', require( '@stdlib/random-array-uniform' ) );
|
|
173
362
|
|
|
363
|
+
/**
|
|
364
|
+
* @name weibull
|
|
365
|
+
* @memberof ns
|
|
366
|
+
* @readonly
|
|
367
|
+
* @type {Function}
|
|
368
|
+
* @see {@link module:@stdlib/random/array/weibull}
|
|
369
|
+
*/
|
|
370
|
+
setReadOnly( ns, 'weibull', require( '@stdlib/random-array-weibull' ) );
|
|
371
|
+
|
|
174
372
|
|
|
175
373
|
// EXPORTS //
|
|
176
374
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/random-array",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Pseudorandom number generator array creation functions.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -36,75 +36,136 @@
|
|
|
36
36
|
"url": "https://github.com/stdlib-js/stdlib/issues"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@stdlib/random-array-arcsine": "^0.
|
|
40
|
-
"@stdlib/random-array-
|
|
41
|
-
"@stdlib/random-array-
|
|
42
|
-
"@stdlib/random-array-
|
|
43
|
-
"@stdlib/random-array-
|
|
44
|
-
"@stdlib/random-array-
|
|
45
|
-
"@stdlib/random-array-
|
|
46
|
-
"@stdlib/random-array-
|
|
47
|
-
"@stdlib/random-array-
|
|
48
|
-
"@stdlib/random-array-
|
|
49
|
-
"@stdlib/random-array-
|
|
50
|
-
"@stdlib/random-array-
|
|
51
|
-
"@stdlib/random-array-
|
|
52
|
-
"@stdlib/random-array-
|
|
53
|
-
"@stdlib/random-array-
|
|
54
|
-
"@stdlib/
|
|
39
|
+
"@stdlib/random-array-arcsine": "^0.2.0",
|
|
40
|
+
"@stdlib/random-array-bernoulli": "^0.2.0",
|
|
41
|
+
"@stdlib/random-array-beta": "^0.2.0",
|
|
42
|
+
"@stdlib/random-array-betaprime": "^0.2.0",
|
|
43
|
+
"@stdlib/random-array-binomial": "^0.2.0",
|
|
44
|
+
"@stdlib/random-array-cauchy": "^0.2.0",
|
|
45
|
+
"@stdlib/random-array-chi": "^0.2.0",
|
|
46
|
+
"@stdlib/random-array-chisquare": "^0.2.0",
|
|
47
|
+
"@stdlib/random-array-cosine": "^0.2.0",
|
|
48
|
+
"@stdlib/random-array-discrete-uniform": "^0.2.0",
|
|
49
|
+
"@stdlib/random-array-erlang": "^0.2.0",
|
|
50
|
+
"@stdlib/random-array-exponential": "^0.2.0",
|
|
51
|
+
"@stdlib/random-array-f": "^0.2.0",
|
|
52
|
+
"@stdlib/random-array-frechet": "^0.2.0",
|
|
53
|
+
"@stdlib/random-array-gamma": "^0.2.0",
|
|
54
|
+
"@stdlib/random-array-geometric": "^0.2.0",
|
|
55
|
+
"@stdlib/random-array-gumbel": "^0.2.0",
|
|
56
|
+
"@stdlib/random-array-hypergeometric": "^0.2.0",
|
|
57
|
+
"@stdlib/random-array-invgamma": "^0.2.0",
|
|
58
|
+
"@stdlib/random-array-kumaraswamy": "^0.2.0",
|
|
59
|
+
"@stdlib/random-array-laplace": "^0.2.0",
|
|
60
|
+
"@stdlib/random-array-levy": "^0.2.0",
|
|
61
|
+
"@stdlib/random-array-logistic": "^0.2.0",
|
|
62
|
+
"@stdlib/random-array-lognormal": "^0.2.0",
|
|
63
|
+
"@stdlib/random-array-minstd": "^0.2.0",
|
|
64
|
+
"@stdlib/random-array-minstd-shuffle": "^0.2.0",
|
|
65
|
+
"@stdlib/random-array-mt19937": "^0.2.0",
|
|
66
|
+
"@stdlib/random-array-negative-binomial": "^0.2.0",
|
|
67
|
+
"@stdlib/random-array-normal": "^0.2.0",
|
|
68
|
+
"@stdlib/random-array-pareto-type1": "^0.2.0",
|
|
69
|
+
"@stdlib/random-array-poisson": "^0.2.0",
|
|
70
|
+
"@stdlib/random-array-randu": "^0.2.0",
|
|
71
|
+
"@stdlib/random-array-rayleigh": "^0.2.0",
|
|
72
|
+
"@stdlib/random-array-t": "^0.2.0",
|
|
73
|
+
"@stdlib/random-array-triangular": "^0.2.0",
|
|
74
|
+
"@stdlib/random-array-uniform": "^0.2.0",
|
|
75
|
+
"@stdlib/random-array-weibull": "^0.2.0",
|
|
76
|
+
"@stdlib/utils-define-read-only-property": "^0.2.0"
|
|
55
77
|
},
|
|
56
78
|
"devDependencies": {
|
|
79
|
+
"@stdlib/array-base-assert-contains": "^0.2.0",
|
|
57
80
|
"@stdlib/array-base-filled-by": "^0.1.0",
|
|
58
|
-
"@stdlib/array-
|
|
59
|
-
"@stdlib/array-
|
|
60
|
-
"@stdlib/array-
|
|
61
|
-
"@stdlib/array-
|
|
62
|
-
"@stdlib/array-
|
|
63
|
-
"@stdlib/array-
|
|
64
|
-
"@stdlib/array-
|
|
65
|
-
"@stdlib/array-
|
|
66
|
-
"@stdlib/
|
|
67
|
-
"@stdlib/
|
|
68
|
-
"@stdlib/
|
|
69
|
-
"@stdlib/
|
|
70
|
-
"@stdlib/
|
|
71
|
-
"@stdlib/assert-
|
|
72
|
-
"@stdlib/
|
|
81
|
+
"@stdlib/array-ctors": "^0.1.0",
|
|
82
|
+
"@stdlib/array-defaults": "^0.2.0",
|
|
83
|
+
"@stdlib/array-dtypes": "^0.2.0",
|
|
84
|
+
"@stdlib/array-float32": "^0.2.0",
|
|
85
|
+
"@stdlib/array-float64": "^0.2.0",
|
|
86
|
+
"@stdlib/array-int32": "^0.2.0",
|
|
87
|
+
"@stdlib/array-nans": "^0.2.0",
|
|
88
|
+
"@stdlib/array-typed-real-ctors": "^0.2.0",
|
|
89
|
+
"@stdlib/array-typed-real-dtypes": "^0.2.0",
|
|
90
|
+
"@stdlib/array-typed-real-float-ctors": "^0.2.0",
|
|
91
|
+
"@stdlib/array-typed-real-float-dtypes": "^0.2.0",
|
|
92
|
+
"@stdlib/array-uint32": "^0.2.0",
|
|
93
|
+
"@stdlib/array-zeros": "^0.1.0",
|
|
94
|
+
"@stdlib/assert-has-own-property": "^0.2.0",
|
|
95
|
+
"@stdlib/assert-is-collection": "^0.2.0",
|
|
96
|
+
"@stdlib/assert-is-function": "^0.2.0",
|
|
97
|
+
"@stdlib/assert-is-int32array": "^0.2.0",
|
|
98
|
+
"@stdlib/assert-is-method-in": "^0.2.0",
|
|
99
|
+
"@stdlib/assert-is-nonnegative-integer": "^0.2.0",
|
|
100
|
+
"@stdlib/assert-is-plain-object": "^0.2.0",
|
|
101
|
+
"@stdlib/assert-is-string-array": "^0.2.0",
|
|
102
|
+
"@stdlib/assert-is-uint32array": "^0.2.0",
|
|
73
103
|
"@stdlib/console-log-each": "^0.1.0",
|
|
74
|
-
"@stdlib/constants-int32-max": "^0.
|
|
75
|
-
"@stdlib/constants-uint32-max": "^0.
|
|
76
|
-
"@stdlib/math-base-assert-is-nan": "^0.
|
|
77
|
-
"@stdlib/math-base-assert-is-nanf": "^0.
|
|
78
|
-
"@stdlib/math-base-special-pow": "^0.
|
|
104
|
+
"@stdlib/constants-int32-max": "^0.2.0",
|
|
105
|
+
"@stdlib/constants-uint32-max": "^0.2.0",
|
|
106
|
+
"@stdlib/math-base-assert-is-nan": "^0.2.0",
|
|
107
|
+
"@stdlib/math-base-assert-is-nanf": "^0.2.0",
|
|
108
|
+
"@stdlib/math-base-special-pow": "^0.2.0",
|
|
109
|
+
"@stdlib/random-array-tools-binary": "^0.2.0",
|
|
110
|
+
"@stdlib/random-array-tools-binary-factory": "^0.2.0",
|
|
111
|
+
"@stdlib/random-array-tools-nullary": "^0.2.0",
|
|
112
|
+
"@stdlib/random-array-tools-ternary": "^0.2.0",
|
|
113
|
+
"@stdlib/random-array-tools-ternary-factory": "^0.2.0",
|
|
114
|
+
"@stdlib/random-array-tools-unary": "^0.2.0",
|
|
115
|
+
"@stdlib/random-array-tools-unary-factory": "^0.2.0",
|
|
79
116
|
"@stdlib/random-base-arcsine": "^0.1.0",
|
|
80
|
-
"@stdlib/random-base-
|
|
81
|
-
"@stdlib/random-base-
|
|
82
|
-
"@stdlib/random-base-
|
|
117
|
+
"@stdlib/random-base-bernoulli": "^0.1.0",
|
|
118
|
+
"@stdlib/random-base-beta": "^0.2.0",
|
|
119
|
+
"@stdlib/random-base-betaprime": "^0.2.0",
|
|
120
|
+
"@stdlib/random-base-binomial": "^0.1.0",
|
|
121
|
+
"@stdlib/random-base-cauchy": "^0.2.0",
|
|
122
|
+
"@stdlib/random-base-chi": "^0.2.0",
|
|
123
|
+
"@stdlib/random-base-chisquare": "^0.2.0",
|
|
124
|
+
"@stdlib/random-base-cosine": "^0.2.0",
|
|
83
125
|
"@stdlib/random-base-discrete-uniform": "^0.1.0",
|
|
126
|
+
"@stdlib/random-base-erlang": "^0.2.0",
|
|
84
127
|
"@stdlib/random-base-exponential": "^0.1.0",
|
|
85
|
-
"@stdlib/random-base-
|
|
128
|
+
"@stdlib/random-base-f": "^0.2.0",
|
|
129
|
+
"@stdlib/random-base-frechet": "^0.2.0",
|
|
130
|
+
"@stdlib/random-base-gamma": "^0.2.0",
|
|
86
131
|
"@stdlib/random-base-geometric": "^0.1.0",
|
|
87
|
-
"@stdlib/random-base-
|
|
88
|
-
"@stdlib/random-base-
|
|
132
|
+
"@stdlib/random-base-gumbel": "^0.2.0",
|
|
133
|
+
"@stdlib/random-base-hypergeometric": "^0.1.0",
|
|
134
|
+
"@stdlib/random-base-invgamma": "^0.2.0",
|
|
135
|
+
"@stdlib/random-base-kumaraswamy": "^0.2.0",
|
|
136
|
+
"@stdlib/random-base-laplace": "^0.2.0",
|
|
137
|
+
"@stdlib/random-base-levy": "^0.2.0",
|
|
138
|
+
"@stdlib/random-base-logistic": "^0.2.0",
|
|
139
|
+
"@stdlib/random-base-lognormal": "^0.2.0",
|
|
89
140
|
"@stdlib/random-base-minstd": "^0.1.0",
|
|
90
141
|
"@stdlib/random-base-minstd-shuffle": "^0.1.0",
|
|
91
|
-
"@stdlib/random-base-mt19937": "^0.
|
|
142
|
+
"@stdlib/random-base-mt19937": "^0.2.0",
|
|
143
|
+
"@stdlib/random-base-negative-binomial": "^0.2.0",
|
|
92
144
|
"@stdlib/random-base-normal": "^0.1.0",
|
|
145
|
+
"@stdlib/random-base-pareto-type1": "^0.2.0",
|
|
146
|
+
"@stdlib/random-base-poisson": "^0.1.0",
|
|
93
147
|
"@stdlib/random-base-randu": "^0.1.0",
|
|
148
|
+
"@stdlib/random-base-rayleigh": "^0.2.0",
|
|
149
|
+
"@stdlib/random-base-t": "^0.2.0",
|
|
150
|
+
"@stdlib/random-base-triangular": "^0.1.0",
|
|
94
151
|
"@stdlib/random-base-uniform": "^0.1.0",
|
|
95
|
-
"@stdlib/
|
|
96
|
-
"@stdlib/strided-base-
|
|
97
|
-
"@stdlib/strided-base-
|
|
98
|
-
"@stdlib/
|
|
99
|
-
"@stdlib/
|
|
100
|
-
"@stdlib/
|
|
101
|
-
"@stdlib/utils-
|
|
102
|
-
"@stdlib/utils-define-nonenumerable-read-
|
|
103
|
-
"@stdlib/utils-
|
|
104
|
-
"@stdlib/utils-
|
|
152
|
+
"@stdlib/random-base-weibull": "^0.2.0",
|
|
153
|
+
"@stdlib/strided-base-binary": "^0.2.0",
|
|
154
|
+
"@stdlib/strided-base-nullary": "^0.2.0",
|
|
155
|
+
"@stdlib/strided-base-ternary": "^0.2.0",
|
|
156
|
+
"@stdlib/strided-base-unary": "^0.2.0",
|
|
157
|
+
"@stdlib/string-format": "^0.2.0",
|
|
158
|
+
"@stdlib/utils-constant-function": "^0.2.0",
|
|
159
|
+
"@stdlib/utils-define-nonenumerable-read-only-accessor": "^0.2.0",
|
|
160
|
+
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.0",
|
|
161
|
+
"@stdlib/utils-define-nonenumerable-read-write-accessor": "^0.2.0",
|
|
162
|
+
"@stdlib/utils-keys": "^0.2.0",
|
|
163
|
+
"@stdlib/utils-noop": "^0.2.0",
|
|
105
164
|
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
|
|
106
165
|
"istanbul": "^0.4.1",
|
|
107
|
-
"tap-min": "git+https://github.com/Planeshifter/tap-min.git"
|
|
166
|
+
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
|
|
167
|
+
"@stdlib/bench-harness": "^0.2.0",
|
|
168
|
+
"@stdlib/bench": "^0.3.1"
|
|
108
169
|
},
|
|
109
170
|
"engines": {
|
|
110
171
|
"node": ">=0.10.0",
|
package/CITATION.cff
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
cff-version: 1.2.0
|
|
2
|
-
title: stdlib
|
|
3
|
-
message: >-
|
|
4
|
-
If you use this software, please cite it using the
|
|
5
|
-
metadata from this file.
|
|
6
|
-
|
|
7
|
-
type: software
|
|
8
|
-
|
|
9
|
-
authors:
|
|
10
|
-
- name: The Stdlib Authors
|
|
11
|
-
url: https://github.com/stdlib-js/stdlib/graphs/contributors
|
|
12
|
-
|
|
13
|
-
repository-code: https://github.com/stdlib-js/stdlib
|
|
14
|
-
url: https://stdlib.io
|
|
15
|
-
|
|
16
|
-
abstract: |
|
|
17
|
-
Standard library for JavaScript and Node.js.
|
|
18
|
-
|
|
19
|
-
keywords:
|
|
20
|
-
- JavaScript
|
|
21
|
-
- Node.js
|
|
22
|
-
- TypeScript
|
|
23
|
-
- standard library
|
|
24
|
-
- scientific computing
|
|
25
|
-
- numerical computing
|
|
26
|
-
- statistical computing
|
|
27
|
-
|
|
28
|
-
license: Apache-2.0 AND BSL-1.0
|
|
29
|
-
|
|
30
|
-
date-released: 2016
|