@stdlib/stats-base-dists-levy-variance 0.2.1 → 0.3.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 +100 -5
- package/include/stdlib/stats/base/dists/levy/variance.h +38 -0
- package/lib/native.js +63 -0
- package/manifest.json +80 -0
- package/package.json +8 -3
- package/src/addon.c +22 -0
- package/src/main.c +43 -0
package/NOTICE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Copyright (c) 2016-
|
|
1
|
+
Copyright (c) 2016-2026 The Stdlib Authors.
|
package/README.md
CHANGED
|
@@ -150,6 +150,101 @@ for ( i = 0; i < 10; i++ ) {
|
|
|
150
150
|
|
|
151
151
|
<!-- /.examples -->
|
|
152
152
|
|
|
153
|
+
<!-- C interface documentation. -->
|
|
154
|
+
|
|
155
|
+
* * *
|
|
156
|
+
|
|
157
|
+
<section class="c">
|
|
158
|
+
|
|
159
|
+
## C APIs
|
|
160
|
+
|
|
161
|
+
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->
|
|
162
|
+
|
|
163
|
+
<section class="intro">
|
|
164
|
+
|
|
165
|
+
</section>
|
|
166
|
+
|
|
167
|
+
<!-- /.intro -->
|
|
168
|
+
|
|
169
|
+
<!-- C usage documentation. -->
|
|
170
|
+
|
|
171
|
+
<section class="usage">
|
|
172
|
+
|
|
173
|
+
### Usage
|
|
174
|
+
|
|
175
|
+
```c
|
|
176
|
+
#include "stdlib/stats/base/dists/levy/variance.h"
|
|
177
|
+
```
|
|
178
|
+
|
|
179
|
+
#### stdlib_base_dists_levy_variance( mu, c )
|
|
180
|
+
|
|
181
|
+
Returns the variance for a Lévy distribution with location `mu` and scale `c`.
|
|
182
|
+
|
|
183
|
+
```c
|
|
184
|
+
double out = stdlib_base_dists_levy_variance( 0.0, 1.0 );
|
|
185
|
+
// returns Infinity
|
|
186
|
+
```
|
|
187
|
+
|
|
188
|
+
The function accepts the following arguments:
|
|
189
|
+
|
|
190
|
+
- **mu**: `[in] double` location parameter.
|
|
191
|
+
- **c**: `[in] double` scale parameter.
|
|
192
|
+
|
|
193
|
+
```c
|
|
194
|
+
double stdlib_base_dists_levy_variance( const double mu, const double c );
|
|
195
|
+
```
|
|
196
|
+
|
|
197
|
+
</section>
|
|
198
|
+
|
|
199
|
+
<!-- /.usage -->
|
|
200
|
+
|
|
201
|
+
<!-- C API usage notes. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
|
|
202
|
+
|
|
203
|
+
<section class="notes">
|
|
204
|
+
|
|
205
|
+
</section>
|
|
206
|
+
|
|
207
|
+
<!-- /.notes -->
|
|
208
|
+
|
|
209
|
+
<!-- C API usage examples. -->
|
|
210
|
+
|
|
211
|
+
<section class="examples">
|
|
212
|
+
|
|
213
|
+
### Examples
|
|
214
|
+
|
|
215
|
+
```c
|
|
216
|
+
#include "stdlib/stats/base/dists/levy/variance.h"
|
|
217
|
+
#include <stdlib.h>
|
|
218
|
+
#include <stdio.h>
|
|
219
|
+
|
|
220
|
+
static double random_uniform( const double min, const double max ) {
|
|
221
|
+
double v = (double)rand() / ( (double)RAND_MAX + 1.0 );
|
|
222
|
+
return min + ( v*(max-min) );
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
int main( void ) {
|
|
226
|
+
double mu;
|
|
227
|
+
double c;
|
|
228
|
+
double y;
|
|
229
|
+
int i;
|
|
230
|
+
|
|
231
|
+
for ( i = 0; i < 25; i++ ) {
|
|
232
|
+
mu = random_uniform( -5.0, 5.0 );
|
|
233
|
+
c = random_uniform( 0.0, 20.0 );
|
|
234
|
+
y = stdlib_base_dists_levy_variance( mu, c );
|
|
235
|
+
printf( "µ: %lf, c: %lf, Var(X;µ,c): %lf\n", mu, c, y );
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
```
|
|
239
|
+
|
|
240
|
+
</section>
|
|
241
|
+
|
|
242
|
+
<!-- /.examples -->
|
|
243
|
+
|
|
244
|
+
</section>
|
|
245
|
+
|
|
246
|
+
<!-- /.c -->
|
|
247
|
+
|
|
153
248
|
<!-- Section to include cited references. If references are included, add a horizontal rule *before* the section. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
|
|
154
249
|
|
|
155
250
|
<section class="references">
|
|
@@ -192,7 +287,7 @@ See [LICENSE][stdlib-license].
|
|
|
192
287
|
|
|
193
288
|
## Copyright
|
|
194
289
|
|
|
195
|
-
Copyright © 2016-
|
|
290
|
+
Copyright © 2016-2026. The Stdlib [Authors][stdlib-authors].
|
|
196
291
|
|
|
197
292
|
</section>
|
|
198
293
|
|
|
@@ -205,8 +300,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
205
300
|
[npm-image]: http://img.shields.io/npm/v/@stdlib/stats-base-dists-levy-variance.svg
|
|
206
301
|
[npm-url]: https://npmjs.org/package/@stdlib/stats-base-dists-levy-variance
|
|
207
302
|
|
|
208
|
-
[test-image]: https://github.com/stdlib-js/stats-base-dists-levy-variance/actions/workflows/test.yml/badge.svg?branch=v0.
|
|
209
|
-
[test-url]: https://github.com/stdlib-js/stats-base-dists-levy-variance/actions/workflows/test.yml?query=branch:v0.
|
|
303
|
+
[test-image]: https://github.com/stdlib-js/stats-base-dists-levy-variance/actions/workflows/test.yml/badge.svg?branch=v0.3.0
|
|
304
|
+
[test-url]: https://github.com/stdlib-js/stats-base-dists-levy-variance/actions/workflows/test.yml?query=branch:v0.3.0
|
|
210
305
|
|
|
211
306
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/stats-base-dists-levy-variance/main.svg
|
|
212
307
|
[coverage-url]: https://codecov.io/github/stdlib-js/stats-base-dists-levy-variance?branch=main
|
|
@@ -218,8 +313,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
218
313
|
|
|
219
314
|
-->
|
|
220
315
|
|
|
221
|
-
[chat-image]: https://img.shields.io/
|
|
222
|
-
[chat-url]: https://
|
|
316
|
+
[chat-image]: https://img.shields.io/badge/zulip-join_chat-brightgreen.svg
|
|
317
|
+
[chat-url]: https://stdlib.zulipchat.com
|
|
223
318
|
|
|
224
319
|
[stdlib]: https://github.com/stdlib-js/stdlib
|
|
225
320
|
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license Apache-2.0
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) 2025 The Stdlib Authors.
|
|
5
|
+
*
|
|
6
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
* you may not use this file except in compliance with the License.
|
|
8
|
+
* You may obtain a copy of the License at
|
|
9
|
+
*
|
|
10
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
*
|
|
12
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
* See the License for the specific language governing permissions and
|
|
16
|
+
* limitations under the License.
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
#ifndef STDLIB_STATS_BASE_DISTS_LEVY_VARIANCE_H
|
|
20
|
+
#define STDLIB_STATS_BASE_DISTS_LEVY_VARIANCE_H
|
|
21
|
+
|
|
22
|
+
/*
|
|
23
|
+
* If C++, prevent name mangling so that the compiler emits a binary file having undecorated names, thus mirroring the behavior of a C compiler.
|
|
24
|
+
*/
|
|
25
|
+
#ifdef __cplusplus
|
|
26
|
+
extern "C" {
|
|
27
|
+
#endif
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* Returns the variance for a Lévy distribution with location `mu` and scale `c`.
|
|
31
|
+
*/
|
|
32
|
+
double stdlib_base_dists_levy_variance( const double mu, const double c );
|
|
33
|
+
|
|
34
|
+
#ifdef __cplusplus
|
|
35
|
+
}
|
|
36
|
+
#endif
|
|
37
|
+
|
|
38
|
+
#endif // !STDLIB_STATS_BASE_DISTS_LEVY_VARIANCE_H
|
package/lib/native.js
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license Apache-2.0
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) 2025 The Stdlib Authors.
|
|
5
|
+
*
|
|
6
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
* you may not use this file except in compliance with the License.
|
|
8
|
+
* You may obtain a copy of the License at
|
|
9
|
+
*
|
|
10
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
*
|
|
12
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
* See the License for the specific language governing permissions and
|
|
16
|
+
* limitations under the License.
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
'use strict';
|
|
20
|
+
|
|
21
|
+
// MODULES //
|
|
22
|
+
|
|
23
|
+
var addon = require( './../src/addon.node' );
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
// MAIN //
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* Returns the variance for a Lévy distribution with location `mu` and scale `c`.
|
|
30
|
+
*
|
|
31
|
+
* @private
|
|
32
|
+
* @param {number} mu - location parameter
|
|
33
|
+
* @param {PositiveNumber} c - scale parameter
|
|
34
|
+
* @returns {PositiveNumber} variance
|
|
35
|
+
*
|
|
36
|
+
* @example
|
|
37
|
+
* var y = variance( 0.0, 1.0 );
|
|
38
|
+
* // returns Infinity
|
|
39
|
+
*
|
|
40
|
+
* @example
|
|
41
|
+
* var y = variance( 5.0, 2.0 );
|
|
42
|
+
* // returns Infinity
|
|
43
|
+
*
|
|
44
|
+
* @example
|
|
45
|
+
* var y = variance( NaN, 1.0 );
|
|
46
|
+
* // returns NaN
|
|
47
|
+
*
|
|
48
|
+
* @example
|
|
49
|
+
* var y = variance( 0.0, NaN );
|
|
50
|
+
* // returns NaN
|
|
51
|
+
*
|
|
52
|
+
* @example
|
|
53
|
+
* var y = variance( 0.0, 0.0 );
|
|
54
|
+
* // returns NaN
|
|
55
|
+
*/
|
|
56
|
+
function variance( mu, c ) {
|
|
57
|
+
return addon( mu, c );
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
// EXPORTS //
|
|
62
|
+
|
|
63
|
+
module.exports = variance;
|
package/manifest.json
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
{
|
|
2
|
+
"options": {
|
|
3
|
+
"task": "build",
|
|
4
|
+
"wasm": false
|
|
5
|
+
},
|
|
6
|
+
"fields": [
|
|
7
|
+
{
|
|
8
|
+
"field": "src",
|
|
9
|
+
"resolve": true,
|
|
10
|
+
"relative": true
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"field": "include",
|
|
14
|
+
"resolve": true,
|
|
15
|
+
"relative": true
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"field": "libraries",
|
|
19
|
+
"resolve": false,
|
|
20
|
+
"relative": false
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"field": "libpath",
|
|
24
|
+
"resolve": true,
|
|
25
|
+
"relative": false
|
|
26
|
+
}
|
|
27
|
+
],
|
|
28
|
+
"confs": [
|
|
29
|
+
{
|
|
30
|
+
"task": "build",
|
|
31
|
+
"wasm": false,
|
|
32
|
+
"src": [
|
|
33
|
+
"./src/main.c"
|
|
34
|
+
],
|
|
35
|
+
"include": [
|
|
36
|
+
"./include"
|
|
37
|
+
],
|
|
38
|
+
"libraries": [],
|
|
39
|
+
"libpath": [],
|
|
40
|
+
"dependencies": [
|
|
41
|
+
"@stdlib/math-base-napi-binary",
|
|
42
|
+
"@stdlib/math-base-assert-is-nan",
|
|
43
|
+
"@stdlib/constants-float64-pinf"
|
|
44
|
+
]
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"task": "benchmark",
|
|
48
|
+
"wasm": false,
|
|
49
|
+
"src": [
|
|
50
|
+
"./src/main.c"
|
|
51
|
+
],
|
|
52
|
+
"include": [
|
|
53
|
+
"./include"
|
|
54
|
+
],
|
|
55
|
+
"libraries": [],
|
|
56
|
+
"libpath": [],
|
|
57
|
+
"dependencies": [
|
|
58
|
+
"@stdlib/math-base-assert-is-nan",
|
|
59
|
+
"@stdlib/constants-float64-eps",
|
|
60
|
+
"@stdlib/constants-float64-pinf"
|
|
61
|
+
]
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"task": "examples",
|
|
65
|
+
"wasm": false,
|
|
66
|
+
"src": [
|
|
67
|
+
"./src/main.c"
|
|
68
|
+
],
|
|
69
|
+
"include": [
|
|
70
|
+
"./include"
|
|
71
|
+
],
|
|
72
|
+
"libraries": [],
|
|
73
|
+
"libpath": [],
|
|
74
|
+
"dependencies": [
|
|
75
|
+
"@stdlib/math-base-assert-is-nan",
|
|
76
|
+
"@stdlib/constants-float64-pinf"
|
|
77
|
+
]
|
|
78
|
+
}
|
|
79
|
+
]
|
|
80
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/stats-base-dists-levy-variance",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Lévy distribution variance.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -14,9 +14,12 @@
|
|
|
14
14
|
}
|
|
15
15
|
],
|
|
16
16
|
"main": "./lib",
|
|
17
|
+
"gypfile": false,
|
|
17
18
|
"directories": {
|
|
18
19
|
"doc": "./docs",
|
|
20
|
+
"include": "./include",
|
|
19
21
|
"lib": "./lib",
|
|
22
|
+
"src": "./src",
|
|
20
23
|
"dist": "./dist"
|
|
21
24
|
},
|
|
22
25
|
"types": "./docs/types",
|
|
@@ -30,8 +33,10 @@
|
|
|
30
33
|
"url": "https://github.com/stdlib-js/stdlib/issues"
|
|
31
34
|
},
|
|
32
35
|
"dependencies": {
|
|
33
|
-
"@stdlib/constants-float64-pinf": "^0.2.
|
|
34
|
-
"@stdlib/math-base-assert-is-nan": "^0.2.
|
|
36
|
+
"@stdlib/constants-float64-pinf": "^0.2.2",
|
|
37
|
+
"@stdlib/math-base-assert-is-nan": "^0.2.2",
|
|
38
|
+
"@stdlib/math-base-napi-binary": "^0.3.1",
|
|
39
|
+
"@stdlib/utils-library-manifest": "^0.2.3"
|
|
35
40
|
},
|
|
36
41
|
"devDependencies": {},
|
|
37
42
|
"engines": {
|
package/src/addon.c
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license Apache-2.0
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) 2025 The Stdlib Authors.
|
|
5
|
+
*
|
|
6
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
* you may not use this file except in compliance with the License.
|
|
8
|
+
* You may obtain a copy of the License at
|
|
9
|
+
*
|
|
10
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
*
|
|
12
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
* See the License for the specific language governing permissions and
|
|
16
|
+
* limitations under the License.
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
#include "stdlib/stats/base/dists/levy/variance.h"
|
|
20
|
+
#include "stdlib/math/base/napi/binary.h"
|
|
21
|
+
|
|
22
|
+
STDLIB_MATH_BASE_NAPI_MODULE_DD_D( stdlib_base_dists_levy_variance )
|
package/src/main.c
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license Apache-2.0
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) 2025 The Stdlib Authors.
|
|
5
|
+
*
|
|
6
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
* you may not use this file except in compliance with the License.
|
|
8
|
+
* You may obtain a copy of the License at
|
|
9
|
+
*
|
|
10
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
*
|
|
12
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
* See the License for the specific language governing permissions and
|
|
16
|
+
* limitations under the License.
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
#include "stdlib/stats/base/dists/levy/variance.h"
|
|
20
|
+
#include "stdlib/math/base/assert/is_nan.h"
|
|
21
|
+
#include "stdlib/constants/float64/pinf.h"
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* Returns the variance for a Lévy distribution with location `mu` and scale `c`.
|
|
25
|
+
*
|
|
26
|
+
* @param mu location parameter
|
|
27
|
+
* @param c scale parameter
|
|
28
|
+
* @return variance
|
|
29
|
+
*
|
|
30
|
+
* @example
|
|
31
|
+
* double y = stdlib_base_levy_variance( 0.0, 1.0 );
|
|
32
|
+
* // returns Infinity
|
|
33
|
+
*/
|
|
34
|
+
double stdlib_base_dists_levy_variance( const double mu, const double c ) {
|
|
35
|
+
if (
|
|
36
|
+
stdlib_base_is_nan( mu ) ||
|
|
37
|
+
stdlib_base_is_nan( c ) ||
|
|
38
|
+
c <= 0.0
|
|
39
|
+
) {
|
|
40
|
+
return 0.0 / 0.0; // NaN
|
|
41
|
+
}
|
|
42
|
+
return STDLIB_CONSTANT_FLOAT64_PINF;
|
|
43
|
+
}
|