@stdlib/random-strided-gamma 0.1.0 → 0.2.1

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 CHANGED
@@ -1 +1 @@
1
- Copyright (c) 2016-2023 The Stdlib Authors.
1
+ Copyright (c) 2016-2024 The Stdlib Authors.
package/README.md CHANGED
@@ -230,6 +230,13 @@ logEach( 'x1[%d] = %.2f; x2[%d] = %.2f', idx, x1, idx, x2 );
230
230
 
231
231
  <section class="related">
232
232
 
233
+ * * *
234
+
235
+ ## See Also
236
+
237
+ - <span class="package-name">[`@stdlib/random-base/gamma`][@stdlib/random/base/gamma]</span><span class="delimiter">: </span><span class="description">gamma distributed pseudorandom numbers.</span>
238
+ - <span class="package-name">[`@stdlib/random-array/gamma`][@stdlib/random/array/gamma]</span><span class="delimiter">: </span><span class="description">create an array containing pseudorandom numbers drawn from a gamma distribution.</span>
239
+
233
240
  </section>
234
241
 
235
242
  <!-- /.related -->
@@ -260,7 +267,7 @@ See [LICENSE][stdlib-license].
260
267
 
261
268
  ## Copyright
262
269
 
263
- Copyright &copy; 2016-2023. The Stdlib [Authors][stdlib-authors].
270
+ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
264
271
 
265
272
  </section>
266
273
 
@@ -273,8 +280,8 @@ Copyright &copy; 2016-2023. The Stdlib [Authors][stdlib-authors].
273
280
  [npm-image]: http://img.shields.io/npm/v/@stdlib/random-strided-gamma.svg
274
281
  [npm-url]: https://npmjs.org/package/@stdlib/random-strided-gamma
275
282
 
276
- [test-image]: https://github.com/stdlib-js/random-strided-gamma/actions/workflows/test.yml/badge.svg?branch=v0.1.0
277
- [test-url]: https://github.com/stdlib-js/random-strided-gamma/actions/workflows/test.yml?query=branch:v0.1.0
283
+ [test-image]: https://github.com/stdlib-js/random-strided-gamma/actions/workflows/test.yml/badge.svg?branch=v0.2.1
284
+ [test-url]: https://github.com/stdlib-js/random-strided-gamma/actions/workflows/test.yml?query=branch:v0.2.1
278
285
 
279
286
  [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/random-strided-gamma/main.svg
280
287
  [coverage-url]: https://codecov.io/github/stdlib-js/random-strided-gamma?branch=main
@@ -297,8 +304,11 @@ Copyright &copy; 2016-2023. The Stdlib [Authors][stdlib-authors].
297
304
  [es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
298
305
 
299
306
  [deno-url]: https://github.com/stdlib-js/random-strided-gamma/tree/deno
307
+ [deno-readme]: https://github.com/stdlib-js/random-strided-gamma/blob/deno/README.md
300
308
  [umd-url]: https://github.com/stdlib-js/random-strided-gamma/tree/umd
309
+ [umd-readme]: https://github.com/stdlib-js/random-strided-gamma/blob/umd/README.md
301
310
  [esm-url]: https://github.com/stdlib-js/random-strided-gamma/tree/esm
311
+ [esm-readme]: https://github.com/stdlib-js/random-strided-gamma/blob/esm/README.md
302
312
  [branches-url]: https://github.com/stdlib-js/random-strided-gamma/blob/main/branches.md
303
313
 
304
314
  [stdlib-license]: https://raw.githubusercontent.com/stdlib-js/random-strided-gamma/main/LICENSE
@@ -309,6 +319,12 @@ Copyright &copy; 2016-2023. The Stdlib [Authors][stdlib-authors].
309
319
 
310
320
  [@stdlib/array/uint32]: https://www.npmjs.com/package/@stdlib/array-uint32
311
321
 
322
+ <!-- <related-links> -->
323
+
324
+ [@stdlib/random/array/gamma]: https://www.npmjs.com/package/@stdlib/random-array-gamma
325
+
326
+ <!-- </related-links> -->
327
+
312
328
  </section>
313
329
 
314
330
  <!-- /.links -->
package/SECURITY.md ADDED
@@ -0,0 +1,5 @@
1
+ # Security
2
+
3
+ > Policy for reporting security vulnerabilities.
4
+
5
+ See the security policy [in the main project repository](https://github.com/stdlib-js/stdlib/security).
@@ -69,7 +69,7 @@ interface Routine {
69
69
  * @returns output array
70
70
  *
71
71
  * @example
72
- * var Float64Array = require( `@stdlib/array/float64` );
72
+ * var Float64Array = require( '@stdlib/array-float64' );
73
73
  *
74
74
  * // Create an array:
75
75
  * var out = new Float64Array( 10 );
@@ -99,7 +99,7 @@ interface Routine {
99
99
  * @returns output array
100
100
  *
101
101
  * @example
102
- * var Float64Array = require( `@stdlib/array/float64` );
102
+ * var Float64Array = require( '@stdlib/array-float64' );
103
103
  *
104
104
  * // Create an array:
105
105
  * var out = new Float64Array( 10 );
@@ -127,7 +127,7 @@ interface Routine {
127
127
  * @returns output array
128
128
  *
129
129
  * @example
130
- * var Float64Array = require( `@stdlib/array/float64` );
130
+ * var Float64Array = require( '@stdlib/array-float64' );
131
131
  *
132
132
  * // Create an array:
133
133
  * var out = new Float64Array( 10 );
@@ -136,7 +136,7 @@ interface Routine {
136
136
  * gamma( out.length, [ 2.0 ], 0, [ 5.0 ], 0, out, 1 );
137
137
  *
138
138
  * @example
139
- * var Float64Array = require( `@stdlib/array/float64` );
139
+ * var Float64Array = require( '@stdlib/array-float64' );
140
140
  *
141
141
  * // Create an array:
142
142
  * var out = new Float64Array( 10 );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stdlib/random-strided-gamma",
3
- "version": "0.1.0",
3
+ "version": "0.2.1",
4
4
  "description": "Fill a strided array with pseudorandom numbers drawn from a gamma distribution.",
5
5
  "license": "Apache-2.0",
6
6
  "author": {
@@ -15,19 +15,12 @@
15
15
  ],
16
16
  "main": "./lib",
17
17
  "directories": {
18
- "benchmark": "./benchmark",
19
18
  "doc": "./docs",
20
- "example": "./examples",
21
19
  "lib": "./lib",
22
- "test": "./test"
20
+ "dist": "./dist"
23
21
  },
24
22
  "types": "./docs/types",
25
- "scripts": {
26
- "test": "make test",
27
- "test-cov": "make test-cov",
28
- "examples": "make examples",
29
- "benchmark": "make benchmark"
30
- },
23
+ "scripts": {},
31
24
  "homepage": "https://stdlib.io",
32
25
  "repository": {
33
26
  "type": "git",
@@ -37,31 +30,13 @@
37
30
  "url": "https://github.com/stdlib-js/stdlib/issues"
38
31
  },
39
32
  "dependencies": {
40
- "@stdlib/array-base-assert-is-accessor-array": "^0.1.0",
41
- "@stdlib/random-base-gamma": "^0.1.0",
42
- "@stdlib/strided-base-binary": "^0.1.0",
43
- "@stdlib/strided-base-nullary": "^0.1.0",
44
- "@stdlib/types": "^0.1.0",
45
- "@stdlib/utils-define-nonenumerable-read-only-property": "^0.1.0"
46
- },
47
- "devDependencies": {
48
- "@stdlib/array-base-linspace": "^0.1.0",
49
- "@stdlib/array-base-to-accessor-array": "^0.1.0",
50
- "@stdlib/array-base-zero-to": "^0.1.0",
51
- "@stdlib/array-filled": "^0.1.0",
52
- "@stdlib/array-filled-by": "^0.1.0",
53
- "@stdlib/array-float64": "^0.1.0",
54
- "@stdlib/array-zeros": "^0.1.0",
55
- "@stdlib/bench": "^0.1.0",
56
- "@stdlib/console-log-each": "^0.1.0",
57
- "@stdlib/math-base-assert-is-nan": "^0.1.0",
58
- "@stdlib/math-base-assert-is-nanf": "^0.1.0",
59
- "@stdlib/math-base-special-pow": "^0.1.0",
60
- "@stdlib/random-base-uniform": "^0.1.0",
61
- "tape": "git+https://github.com/kgryte/tape.git#fix/globby",
62
- "istanbul": "^0.4.1",
63
- "tap-min": "git+https://github.com/Planeshifter/tap-min.git"
33
+ "@stdlib/array-base-assert-is-accessor-array": "^0.2.1",
34
+ "@stdlib/random-base-gamma": "^0.2.1",
35
+ "@stdlib/strided-base-binary": "^0.2.1",
36
+ "@stdlib/strided-base-nullary": "^0.2.1",
37
+ "@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.1"
64
38
  },
39
+ "devDependencies": {},
65
40
  "engines": {
66
41
  "node": ">=0.10.0",
67
42
  "npm": ">2.7.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