@stdlib/math-base-special-betaln 0.0.2 → 0.0.6
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 +51 -5
- package/package.json +2 -2
- package/CHANGELOG.md +0 -5
package/NOTICE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Copyright (c) 2016-
|
|
1
|
+
Copyright (c) 2016-2022 The Stdlib Authors.
|
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ limitations under the License.
|
|
|
20
20
|
|
|
21
21
|
# betaln
|
|
22
22
|
|
|
23
|
-
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] [![dependencies][dependencies-image]][dependencies-url]
|
|
23
|
+
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] <!-- [![dependencies][dependencies-image]][dependencies-url] -->
|
|
24
24
|
|
|
25
25
|
> [Natural logarithm][natural-logarithm] of the [beta function][beta-function].
|
|
26
26
|
|
|
@@ -31,7 +31,7 @@ The [beta function][beta-function], also called the Euler integral, is defined a
|
|
|
31
31
|
<!-- <equation class="equation" label="eq:beta_function" align="center" raw="\operatorname{Beta}(x,y) = \int_0^1t^{x-1}(1-t)^{y-1}\,\mathrm{d}t" alt="Equation for the beta function."> -->
|
|
32
32
|
|
|
33
33
|
<div class="equation" align="center" data-raw-text="\operatorname{Beta}(x,y) = \int_0^1t^{x-1}(1-t)^{y-1}\,\mathrm{d}t" data-equation="eq:beta_function">
|
|
34
|
-
<img src="https://cdn.
|
|
34
|
+
<img src="https://cdn.jsdelivr.net/gh/stdlib-js/stdlib@bb29798906e119fcb2af99e94b60407a270c9b32/lib/node_modules/@stdlib/math/base/special/betaln/docs/img/equation_beta_function.svg" alt="Equation for the beta function.">
|
|
35
35
|
<br>
|
|
36
36
|
</div>
|
|
37
37
|
|
|
@@ -42,7 +42,7 @@ The [beta function][beta-function] is related to the [gamma function][gamma-func
|
|
|
42
42
|
<!-- <equation class="equation" label="eq:beta_function2" align="center" raw="\operatorname{Beta}(x,y)=\dfrac{\Gamma(x)\,\Gamma(y)}{\Gamma(x+y)} \!" alt="Beta function expressed in terms of the Gamma function."> -->
|
|
43
43
|
|
|
44
44
|
<div class="equation" align="center" data-raw-text="\operatorname{Beta}(x,y)=\dfrac{\Gamma(x)\,\Gamma(y)}{\Gamma(x+y)} \!" data-equation="eq:beta_function2">
|
|
45
|
-
<img src="https://cdn.
|
|
45
|
+
<img src="https://cdn.jsdelivr.net/gh/stdlib-js/stdlib@bb29798906e119fcb2af99e94b60407a270c9b32/lib/node_modules/@stdlib/math/base/special/betaln/docs/img/equation_beta_function2.svg" alt="Beta function expressed in terms of the Gamma function.">
|
|
46
46
|
<br>
|
|
47
47
|
</div>
|
|
48
48
|
|
|
@@ -117,6 +117,24 @@ for ( x = 0; x < 10; x++ ) {
|
|
|
117
117
|
|
|
118
118
|
<!-- /.examples -->
|
|
119
119
|
|
|
120
|
+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
|
|
121
|
+
|
|
122
|
+
<section class="related">
|
|
123
|
+
|
|
124
|
+
* * *
|
|
125
|
+
|
|
126
|
+
## See Also
|
|
127
|
+
|
|
128
|
+
- <span class="package-name">[`@stdlib/math/base/special/beta`][@stdlib/math/base/special/beta]</span><span class="delimiter">: </span><span class="description">beta function.</span>
|
|
129
|
+
- <span class="package-name">[`@stdlib/math/base/special/betainc`][@stdlib/math/base/special/betainc]</span><span class="delimiter">: </span><span class="description">incomplete beta function.</span>
|
|
130
|
+
- <span class="package-name">[`@stdlib/math/base/special/betaincinv`][@stdlib/math/base/special/betaincinv]</span><span class="delimiter">: </span><span class="description">inverse incomplete beta function.</span>
|
|
131
|
+
|
|
132
|
+
</section>
|
|
133
|
+
|
|
134
|
+
<!-- /.related -->
|
|
135
|
+
|
|
136
|
+
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
|
|
137
|
+
|
|
120
138
|
|
|
121
139
|
<section class="main-repo" >
|
|
122
140
|
|
|
@@ -128,6 +146,10 @@ This package is part of [stdlib][stdlib], a standard library for JavaScript and
|
|
|
128
146
|
|
|
129
147
|
For more information on the project, filing bug reports and feature requests, and guidance on how to develop [stdlib][stdlib], see the main project [repository][stdlib].
|
|
130
148
|
|
|
149
|
+
#### Community
|
|
150
|
+
|
|
151
|
+
[![Chat][chat-image]][chat-url]
|
|
152
|
+
|
|
131
153
|
---
|
|
132
154
|
|
|
133
155
|
## License
|
|
@@ -137,7 +159,7 @@ See [LICENSE][stdlib-license].
|
|
|
137
159
|
|
|
138
160
|
## Copyright
|
|
139
161
|
|
|
140
|
-
Copyright © 2016-
|
|
162
|
+
Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
141
163
|
|
|
142
164
|
</section>
|
|
143
165
|
|
|
@@ -156,9 +178,23 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
156
178
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/math-base-special-betaln/main.svg
|
|
157
179
|
[coverage-url]: https://codecov.io/github/stdlib-js/math-base-special-betaln?branch=main
|
|
158
180
|
|
|
159
|
-
|
|
181
|
+
<!--
|
|
182
|
+
|
|
183
|
+
[dependencies-image]: https://img.shields.io/david/stdlib-js/math-base-special-betaln.svg
|
|
160
184
|
[dependencies-url]: https://david-dm.org/stdlib-js/math-base-special-betaln/main
|
|
161
185
|
|
|
186
|
+
-->
|
|
187
|
+
|
|
188
|
+
[umd]: https://github.com/umdjs/umd
|
|
189
|
+
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
190
|
+
|
|
191
|
+
[deno-url]: https://github.com/stdlib-js/math-base-special-betaln/tree/deno
|
|
192
|
+
[umd-url]: https://github.com/stdlib-js/math-base-special-betaln/tree/umd
|
|
193
|
+
[esm-url]: https://github.com/stdlib-js/math-base-special-betaln/tree/esm
|
|
194
|
+
|
|
195
|
+
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
|
|
196
|
+
[chat-url]: https://gitter.im/stdlib-js/stdlib/
|
|
197
|
+
|
|
162
198
|
[stdlib]: https://github.com/stdlib-js/stdlib
|
|
163
199
|
|
|
164
200
|
[stdlib-authors]: https://github.com/stdlib-js/stdlib/graphs/contributors
|
|
@@ -171,6 +207,16 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
171
207
|
|
|
172
208
|
[gamma-function]: https://en.wikipedia.org/wiki/Gamma_function
|
|
173
209
|
|
|
210
|
+
<!-- <related-links> -->
|
|
211
|
+
|
|
212
|
+
[@stdlib/math/base/special/beta]: https://www.npmjs.com/package/@stdlib/math-base-special-beta
|
|
213
|
+
|
|
214
|
+
[@stdlib/math/base/special/betainc]: https://www.npmjs.com/package/@stdlib/math-base-special-betainc
|
|
215
|
+
|
|
216
|
+
[@stdlib/math/base/special/betaincinv]: https://www.npmjs.com/package/@stdlib/math-base-special-betaincinv
|
|
217
|
+
|
|
218
|
+
<!-- </related-links> -->
|
|
219
|
+
|
|
174
220
|
</section>
|
|
175
221
|
|
|
176
222
|
<!-- /.links -->
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/math-base-special-betaln",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"description": "Natural logarithm of the beta function.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"examples": "make examples",
|
|
29
29
|
"benchmark": "make benchmark"
|
|
30
30
|
},
|
|
31
|
-
"homepage": "https://
|
|
31
|
+
"homepage": "https://stdlib.io",
|
|
32
32
|
"repository": {
|
|
33
33
|
"type": "git",
|
|
34
34
|
"url": "git://github.com/stdlib-js/math-base-special-betaln.git"
|