@stdlib/random-array-invgamma 0.2.1 → 0.2.2
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 +5 -5
- package/docs/types/index.d.ts +1 -1
- package/package.json +6 -6
package/NOTICE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Copyright (c) 2016-
|
|
1
|
+
Copyright (c) 2016-2026 The Stdlib Authors.
|
package/README.md
CHANGED
|
@@ -414,7 +414,7 @@ See [LICENSE][stdlib-license].
|
|
|
414
414
|
|
|
415
415
|
## Copyright
|
|
416
416
|
|
|
417
|
-
Copyright © 2016-
|
|
417
|
+
Copyright © 2016-2026. The Stdlib [Authors][stdlib-authors].
|
|
418
418
|
|
|
419
419
|
</section>
|
|
420
420
|
|
|
@@ -427,8 +427,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
427
427
|
[npm-image]: http://img.shields.io/npm/v/@stdlib/random-array-invgamma.svg
|
|
428
428
|
[npm-url]: https://npmjs.org/package/@stdlib/random-array-invgamma
|
|
429
429
|
|
|
430
|
-
[test-image]: https://github.com/stdlib-js/random-array-invgamma/actions/workflows/test.yml/badge.svg?branch=v0.2.
|
|
431
|
-
[test-url]: https://github.com/stdlib-js/random-array-invgamma/actions/workflows/test.yml?query=branch:v0.2.
|
|
430
|
+
[test-image]: https://github.com/stdlib-js/random-array-invgamma/actions/workflows/test.yml/badge.svg?branch=v0.2.2
|
|
431
|
+
[test-url]: https://github.com/stdlib-js/random-array-invgamma/actions/workflows/test.yml?query=branch:v0.2.2
|
|
432
432
|
|
|
433
433
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/random-array-invgamma/main.svg
|
|
434
434
|
[coverage-url]: https://codecov.io/github/stdlib-js/random-array-invgamma?branch=main
|
|
@@ -440,8 +440,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
440
440
|
|
|
441
441
|
-->
|
|
442
442
|
|
|
443
|
-
[chat-image]: https://img.shields.io/
|
|
444
|
-
[chat-url]: https://
|
|
443
|
+
[chat-image]: https://img.shields.io/badge/zulip-join_chat-brightgreen.svg
|
|
444
|
+
[chat-url]: https://stdlib.zulipchat.com
|
|
445
445
|
|
|
446
446
|
[stdlib]: https://github.com/stdlib-js/stdlib
|
|
447
447
|
|
package/docs/types/index.d.ts
CHANGED
|
@@ -189,7 +189,7 @@ interface Random extends PRNG {
|
|
|
189
189
|
* var x = zeros( 10, 'float64' );
|
|
190
190
|
* // returns <Float64Array>
|
|
191
191
|
*
|
|
192
|
-
* var out = invgamma( 2.0, 5.0,
|
|
192
|
+
* var out = invgamma( 2.0, 5.0, x );
|
|
193
193
|
* // returns <Float64Array>
|
|
194
194
|
*
|
|
195
195
|
* var bool = ( out === x );
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/random-array-invgamma",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "Create an array containing pseudorandom numbers drawn from an inverse gamma distribution.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -30,11 +30,11 @@
|
|
|
30
30
|
"url": "https://github.com/stdlib-js/stdlib/issues"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@stdlib/array-defaults": "^0.
|
|
34
|
-
"@stdlib/array-dtypes": "^0.
|
|
35
|
-
"@stdlib/random-array-tools-binary-factory": "^0.2.
|
|
36
|
-
"@stdlib/random-base-invgamma": "^0.2.
|
|
37
|
-
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.
|
|
33
|
+
"@stdlib/array-defaults": "^0.4.1",
|
|
34
|
+
"@stdlib/array-dtypes": "^0.4.1",
|
|
35
|
+
"@stdlib/random-array-tools-binary-factory": "^0.2.3",
|
|
36
|
+
"@stdlib/random-base-invgamma": "^0.2.2",
|
|
37
|
+
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.3"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {},
|
|
40
40
|
"engines": {
|