@stdlib/math-base-special-kernel-betaincinv 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 +6 -3
- package/SECURITY.md +5 -0
- package/docs/types/index.d.ts +1 -1
- package/package.json +42 -41
- package/CITATION.cff +0 -30
package/NOTICE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Copyright (c) 2016-
|
|
1
|
+
Copyright (c) 2016-2024 The Stdlib Authors.
|
package/README.md
CHANGED
|
@@ -143,7 +143,7 @@ For more information on the project, filing bug reports and feature requests, an
|
|
|
143
143
|
|
|
144
144
|
## Copyright
|
|
145
145
|
|
|
146
|
-
Copyright © 2016-
|
|
146
|
+
Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
147
147
|
|
|
148
148
|
</section>
|
|
149
149
|
|
|
@@ -156,8 +156,8 @@ Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors].
|
|
|
156
156
|
[npm-image]: http://img.shields.io/npm/v/@stdlib/math-base-special-kernel-betaincinv.svg
|
|
157
157
|
[npm-url]: https://npmjs.org/package/@stdlib/math-base-special-kernel-betaincinv
|
|
158
158
|
|
|
159
|
-
[test-image]: https://github.com/stdlib-js/math-base-special-kernel-betaincinv/actions/workflows/test.yml/badge.svg?branch=v0.
|
|
160
|
-
[test-url]: https://github.com/stdlib-js/math-base-special-kernel-betaincinv/actions/workflows/test.yml?query=branch:v0.
|
|
159
|
+
[test-image]: https://github.com/stdlib-js/math-base-special-kernel-betaincinv/actions/workflows/test.yml/badge.svg?branch=v0.2.0
|
|
160
|
+
[test-url]: https://github.com/stdlib-js/math-base-special-kernel-betaincinv/actions/workflows/test.yml?query=branch:v0.2.0
|
|
161
161
|
|
|
162
162
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/math-base-special-kernel-betaincinv/main.svg
|
|
163
163
|
[coverage-url]: https://codecov.io/github/stdlib-js/math-base-special-kernel-betaincinv?branch=main
|
|
@@ -180,8 +180,11 @@ Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors].
|
|
|
180
180
|
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
181
181
|
|
|
182
182
|
[deno-url]: https://github.com/stdlib-js/math-base-special-kernel-betaincinv/tree/deno
|
|
183
|
+
[deno-readme]: https://github.com/stdlib-js/math-base-special-kernel-betaincinv/blob/deno/README.md
|
|
183
184
|
[umd-url]: https://github.com/stdlib-js/math-base-special-kernel-betaincinv/tree/umd
|
|
185
|
+
[umd-readme]: https://github.com/stdlib-js/math-base-special-kernel-betaincinv/blob/umd/README.md
|
|
184
186
|
[esm-url]: https://github.com/stdlib-js/math-base-special-kernel-betaincinv/tree/esm
|
|
187
|
+
[esm-readme]: https://github.com/stdlib-js/math-base-special-kernel-betaincinv/blob/esm/README.md
|
|
185
188
|
[branches-url]: https://github.com/stdlib-js/math-base-special-kernel-betaincinv/blob/main/branches.md
|
|
186
189
|
|
|
187
190
|
[incomplete-beta-function]: https://en.wikipedia.org/wiki/Incomplete_beta_function
|
package/SECURITY.md
ADDED
package/docs/types/index.d.ts
CHANGED
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
* y = kernelBetaincinv( 1.0, 6.0, 0.8, 0.2 )
|
|
45
45
|
* // returns[ ~0.235, ~0.765 ]
|
|
46
46
|
*/
|
|
47
|
-
declare function kernelBetaincinv( a: number, b: number, p: number, q: number ): Array<number>;
|
|
47
|
+
declare function kernelBetaincinv( a: number, b: number, p: number, q: number ): Array<number>;
|
|
48
48
|
|
|
49
49
|
|
|
50
50
|
// EXPORTS //
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/math-base-special-kernel-betaincinv",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Inverse incomplete beta function.",
|
|
5
5
|
"license": "Apache-2.0 AND BSL-1.0",
|
|
6
6
|
"author": {
|
|
@@ -38,50 +38,51 @@
|
|
|
38
38
|
"url": "https://github.com/stdlib-js/stdlib/issues"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@stdlib/constants-float64-eps": "^0.
|
|
42
|
-
"@stdlib/constants-float64-half-pi": "^0.
|
|
43
|
-
"@stdlib/constants-float64-max": "^0.
|
|
44
|
-
"@stdlib/constants-float64-pi": "^0.
|
|
45
|
-
"@stdlib/constants-float64-smallest-normal": "^0.
|
|
46
|
-
"@stdlib/constants-float64-smallest-subnormal": "^0.
|
|
47
|
-
"@stdlib/constants-float64-sqrt-two": "^0.
|
|
48
|
-
"@stdlib/math-base-special-abs": "^0.
|
|
49
|
-
"@stdlib/math-base-special-acos": "^0.
|
|
50
|
-
"@stdlib/math-base-special-asin": "^0.
|
|
51
|
-
"@stdlib/math-base-special-beta": "^0.
|
|
52
|
-
"@stdlib/math-base-special-betainc": "^0.
|
|
53
|
-
"@stdlib/math-base-special-cos": "^0.
|
|
54
|
-
"@stdlib/math-base-special-erfcinv": "^0.
|
|
55
|
-
"@stdlib/math-base-special-exp": "^0.
|
|
56
|
-
"@stdlib/math-base-special-expm1": "^0.
|
|
57
|
-
"@stdlib/math-base-special-floor": "^0.
|
|
58
|
-
"@stdlib/math-base-special-gamma-delta-ratio": "^0.
|
|
59
|
-
"@stdlib/math-base-special-gammaincinv": "^0.
|
|
60
|
-
"@stdlib/math-base-special-kernel-betainc": "^0.
|
|
61
|
-
"@stdlib/math-base-special-ldexp": "^0.
|
|
62
|
-
"@stdlib/math-base-special-ln": "^0.
|
|
63
|
-
"@stdlib/math-base-special-log1p": "^0.
|
|
64
|
-
"@stdlib/math-base-special-max": "^0.
|
|
65
|
-
"@stdlib/math-base-special-min": "^0.
|
|
66
|
-
"@stdlib/math-base-special-pow": "^0.
|
|
67
|
-
"@stdlib/math-base-special-round": "^0.
|
|
68
|
-
"@stdlib/math-base-special-signum": "^0.
|
|
69
|
-
"@stdlib/math-base-special-sin": "^0.
|
|
70
|
-
"@stdlib/math-base-special-sqrt": "^0.
|
|
71
|
-
"@stdlib/math-base-tools-evalpoly": "^0.
|
|
41
|
+
"@stdlib/constants-float64-eps": "^0.2.0",
|
|
42
|
+
"@stdlib/constants-float64-half-pi": "^0.2.0",
|
|
43
|
+
"@stdlib/constants-float64-max": "^0.2.0",
|
|
44
|
+
"@stdlib/constants-float64-pi": "^0.2.0",
|
|
45
|
+
"@stdlib/constants-float64-smallest-normal": "^0.2.0",
|
|
46
|
+
"@stdlib/constants-float64-smallest-subnormal": "^0.2.0",
|
|
47
|
+
"@stdlib/constants-float64-sqrt-two": "^0.2.0",
|
|
48
|
+
"@stdlib/math-base-special-abs": "^0.2.0",
|
|
49
|
+
"@stdlib/math-base-special-acos": "^0.2.0",
|
|
50
|
+
"@stdlib/math-base-special-asin": "^0.2.0",
|
|
51
|
+
"@stdlib/math-base-special-beta": "^0.2.0",
|
|
52
|
+
"@stdlib/math-base-special-betainc": "^0.2.0",
|
|
53
|
+
"@stdlib/math-base-special-cos": "^0.2.0",
|
|
54
|
+
"@stdlib/math-base-special-erfcinv": "^0.2.0",
|
|
55
|
+
"@stdlib/math-base-special-exp": "^0.2.0",
|
|
56
|
+
"@stdlib/math-base-special-expm1": "^0.2.0",
|
|
57
|
+
"@stdlib/math-base-special-floor": "^0.2.0",
|
|
58
|
+
"@stdlib/math-base-special-gamma-delta-ratio": "^0.2.0",
|
|
59
|
+
"@stdlib/math-base-special-gammaincinv": "^0.2.0",
|
|
60
|
+
"@stdlib/math-base-special-kernel-betainc": "^0.2.0",
|
|
61
|
+
"@stdlib/math-base-special-ldexp": "^0.2.0",
|
|
62
|
+
"@stdlib/math-base-special-ln": "^0.2.0",
|
|
63
|
+
"@stdlib/math-base-special-log1p": "^0.2.0",
|
|
64
|
+
"@stdlib/math-base-special-max": "^0.2.0",
|
|
65
|
+
"@stdlib/math-base-special-min": "^0.2.0",
|
|
66
|
+
"@stdlib/math-base-special-pow": "^0.2.0",
|
|
67
|
+
"@stdlib/math-base-special-round": "^0.2.0",
|
|
68
|
+
"@stdlib/math-base-special-signum": "^0.2.0",
|
|
69
|
+
"@stdlib/math-base-special-sin": "^0.2.0",
|
|
70
|
+
"@stdlib/math-base-special-sqrt": "^0.2.0",
|
|
71
|
+
"@stdlib/math-base-tools-evalpoly": "^0.2.0"
|
|
72
72
|
},
|
|
73
73
|
"devDependencies": {
|
|
74
|
-
"@stdlib/assert-is-number-array": "^0.
|
|
75
|
-
"@stdlib/
|
|
76
|
-
"@stdlib/
|
|
77
|
-
"@stdlib/math-base-tools-
|
|
78
|
-
"@stdlib/math-base-tools-
|
|
79
|
-
"@stdlib/
|
|
80
|
-
"@stdlib/
|
|
81
|
-
"@stdlib/time-current-year": "^0.1.0",
|
|
74
|
+
"@stdlib/assert-is-number-array": "^0.2.0",
|
|
75
|
+
"@stdlib/fs-write-file": "^0.2.0",
|
|
76
|
+
"@stdlib/math-base-tools-continued-fraction": "^0.2.0",
|
|
77
|
+
"@stdlib/math-base-tools-evalpoly-compile": "^0.2.0",
|
|
78
|
+
"@stdlib/math-base-tools-sum-series": "^0.2.0",
|
|
79
|
+
"@stdlib/random-base-randu": "^0.1.0",
|
|
80
|
+
"@stdlib/time-current-year": "^0.2.0",
|
|
82
81
|
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
|
|
83
82
|
"istanbul": "^0.4.1",
|
|
84
|
-
"tap-min": "git+https://github.com/Planeshifter/tap-min.git"
|
|
83
|
+
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
|
|
84
|
+
"@stdlib/bench-harness": "^0.2.0",
|
|
85
|
+
"@stdlib/bench": "^0.3.1"
|
|
85
86
|
},
|
|
86
87
|
"engines": {
|
|
87
88
|
"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
|