@stdlib/math-base-special-kernel-betaincinv 0.1.0 → 0.1.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
@@ -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-2023. The Stdlib [Authors][stdlib-authors].
146
+ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
147
147
 
148
148
  </section>
149
149
 
@@ -156,8 +156,8 @@ Copyright &copy; 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.1.0
160
- [test-url]: https://github.com/stdlib-js/math-base-special-kernel-betaincinv/actions/workflows/test.yml?query=branch:v0.1.0
159
+ [test-image]: https://github.com/stdlib-js/math-base-special-kernel-betaincinv/actions/workflows/test.yml/badge.svg?branch=v0.1.1
160
+ [test-url]: https://github.com/stdlib-js/math-base-special-kernel-betaincinv/actions/workflows/test.yml?query=branch:v0.1.1
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 &copy; 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
@@ -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).
@@ -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>; // tslint-disable-line max-line-length
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.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Inverse incomplete beta function.",
5
5
  "license": "Apache-2.0 AND BSL-1.0",
6
6
  "author": {
@@ -15,20 +15,13 @@
15
15
  ],
16
16
  "main": "./lib",
17
17
  "directories": {
18
- "benchmark": "./benchmark",
19
18
  "doc": "./docs",
20
- "example": "./examples",
21
19
  "lib": "./lib",
22
20
  "scripts": "./scripts",
23
- "test": "./test"
21
+ "dist": "./dist"
24
22
  },
25
23
  "types": "./docs/types",
26
- "scripts": {
27
- "test": "make test",
28
- "test-cov": "make test-cov",
29
- "examples": "make examples",
30
- "benchmark": "make benchmark"
31
- },
24
+ "scripts": {},
32
25
  "homepage": "https://stdlib.io",
33
26
  "repository": {
34
27
  "type": "git",
@@ -38,51 +31,39 @@
38
31
  "url": "https://github.com/stdlib-js/stdlib/issues"
39
32
  },
40
33
  "dependencies": {
41
- "@stdlib/constants-float64-eps": "^0.1.0",
42
- "@stdlib/constants-float64-half-pi": "^0.1.0",
43
- "@stdlib/constants-float64-max": "^0.1.0",
44
- "@stdlib/constants-float64-pi": "^0.1.0",
45
- "@stdlib/constants-float64-smallest-normal": "^0.1.0",
46
- "@stdlib/constants-float64-smallest-subnormal": "^0.1.0",
47
- "@stdlib/constants-float64-sqrt-two": "^0.1.0",
48
- "@stdlib/math-base-special-abs": "^0.1.0",
49
- "@stdlib/math-base-special-acos": "^0.1.0",
50
- "@stdlib/math-base-special-asin": "^0.1.0",
51
- "@stdlib/math-base-special-beta": "^0.1.0",
52
- "@stdlib/math-base-special-betainc": "^0.1.0",
53
- "@stdlib/math-base-special-cos": "^0.1.0",
54
- "@stdlib/math-base-special-erfcinv": "^0.1.0",
55
- "@stdlib/math-base-special-exp": "^0.1.0",
56
- "@stdlib/math-base-special-expm1": "^0.1.0",
57
- "@stdlib/math-base-special-floor": "^0.1.0",
58
- "@stdlib/math-base-special-gamma-delta-ratio": "^0.1.0",
59
- "@stdlib/math-base-special-gammaincinv": "^0.1.0",
60
- "@stdlib/math-base-special-kernel-betainc": "^0.1.0",
61
- "@stdlib/math-base-special-ldexp": "^0.1.0",
62
- "@stdlib/math-base-special-ln": "^0.1.0",
63
- "@stdlib/math-base-special-log1p": "^0.1.0",
64
- "@stdlib/math-base-special-max": "^0.1.0",
65
- "@stdlib/math-base-special-min": "^0.1.0",
66
- "@stdlib/math-base-special-pow": "^0.1.0",
67
- "@stdlib/math-base-special-round": "^0.1.0",
68
- "@stdlib/math-base-special-signum": "^0.1.0",
69
- "@stdlib/math-base-special-sin": "^0.1.0",
70
- "@stdlib/math-base-special-sqrt": "^0.1.0",
71
- "@stdlib/math-base-tools-evalpoly": "^0.1.0"
72
- },
73
- "devDependencies": {
74
- "@stdlib/assert-is-number-array": "^0.1.0",
75
- "@stdlib/bench": "^0.1.0",
76
- "@stdlib/fs-write-file": "^0.1.0",
77
- "@stdlib/math-base-tools-continued-fraction": "^0.1.0",
78
- "@stdlib/math-base-tools-evalpoly-compile": "^0.1.0",
79
- "@stdlib/math-base-tools-sum-series": "^0.1.0",
80
- "@stdlib/random-base-randu": "^0.0.8",
81
- "@stdlib/time-current-year": "^0.1.0",
82
- "tape": "git+https://github.com/kgryte/tape.git#fix/globby",
83
- "istanbul": "^0.4.1",
84
- "tap-min": "git+https://github.com/Planeshifter/tap-min.git"
34
+ "@stdlib/constants-float64-eps": "^0.2.1",
35
+ "@stdlib/constants-float64-half-pi": "^0.2.1",
36
+ "@stdlib/constants-float64-max": "^0.2.1",
37
+ "@stdlib/constants-float64-pi": "^0.2.1",
38
+ "@stdlib/constants-float64-smallest-normal": "^0.2.1",
39
+ "@stdlib/constants-float64-smallest-subnormal": "^0.2.1",
40
+ "@stdlib/constants-float64-sqrt-two": "^0.2.1",
41
+ "@stdlib/math-base-special-abs": "^0.2.1",
42
+ "@stdlib/math-base-special-acos": "^0.2.1",
43
+ "@stdlib/math-base-special-asin": "^0.2.1",
44
+ "@stdlib/math-base-special-beta": "^0.2.1",
45
+ "@stdlib/math-base-special-betainc": "^0.2.1",
46
+ "@stdlib/math-base-special-cos": "^0.2.1",
47
+ "@stdlib/math-base-special-erfcinv": "^0.2.1",
48
+ "@stdlib/math-base-special-exp": "^0.2.1",
49
+ "@stdlib/math-base-special-expm1": "^0.2.1",
50
+ "@stdlib/math-base-special-floor": "^0.2.1",
51
+ "@stdlib/math-base-special-gamma-delta-ratio": "^0.2.1",
52
+ "@stdlib/math-base-special-gammaincinv": "^0.2.1",
53
+ "@stdlib/math-base-special-kernel-betainc": "^0.2.1",
54
+ "@stdlib/math-base-special-ldexp": "^0.2.1",
55
+ "@stdlib/math-base-special-ln": "^0.2.1",
56
+ "@stdlib/math-base-special-log1p": "^0.2.1",
57
+ "@stdlib/math-base-special-max": "^0.2.1",
58
+ "@stdlib/math-base-special-min": "^0.2.1",
59
+ "@stdlib/math-base-special-pow": "^0.2.1",
60
+ "@stdlib/math-base-special-round": "^0.2.1",
61
+ "@stdlib/math-base-special-signum": "^0.2.1",
62
+ "@stdlib/math-base-special-sin": "^0.2.1",
63
+ "@stdlib/math-base-special-sqrt": "^0.2.1",
64
+ "@stdlib/math-base-tools-evalpoly": "^0.2.1"
85
65
  },
66
+ "devDependencies": {},
86
67
  "engines": {
87
68
  "node": ">=0.10.0",
88
69
  "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