From 14c7a4e2b17b2fa680404b098af4e3cb13082f25 Mon Sep 17 00:00:00 2001 From: stdlib-bot <82920195+stdlib-bot@users.noreply.github.com> Date: Tue, 17 Dec 2024 01:57:10 +0000 Subject: [PATCH] Update artifacts --- .../dists/arcsine/variance/coverage.ndjson | 1 + stats/base/dists/arcsine/variance/index.html | 146 +++++++++ .../base/dists/arcsine/variance/index.js.html | 223 +++++++++++++ .../base/dists/arcsine/variance/main.js.html | 292 ++++++++++++++++++ .../dists/arcsine/variance/native.js.html | 286 +++++++++++++++++ 5 files changed, 948 insertions(+) create mode 100644 stats/base/dists/arcsine/variance/coverage.ndjson create mode 100644 stats/base/dists/arcsine/variance/index.html create mode 100644 stats/base/dists/arcsine/variance/index.js.html create mode 100644 stats/base/dists/arcsine/variance/main.js.html create mode 100644 stats/base/dists/arcsine/variance/native.js.html diff --git a/stats/base/dists/arcsine/variance/coverage.ndjson b/stats/base/dists/arcsine/variance/coverage.ndjson new file mode 100644 index 000000000..ab3ef6ea8 --- /dev/null +++ b/stats/base/dists/arcsine/variance/coverage.ndjson @@ -0,0 +1 @@ +[182,182,100,7,7,100,2,2,100,182,182,100,"3688b0821bbfc1e99f33b859a4e090c6b75dc3fa","2024-12-16 20:54:40 -0500"] diff --git a/stats/base/dists/arcsine/variance/index.html b/stats/base/dists/arcsine/variance/index.html new file mode 100644 index 000000000..ba8dda5cc --- /dev/null +++ b/stats/base/dists/arcsine/variance/index.html @@ -0,0 +1,146 @@ + + + + + + Code coverage report for stats/base/dists/arcsine/variance/lib + + + + + + + + + +
+
+

All files stats/base/dists/arcsine/variance/lib

+
+ +
+ 100% + Statements + 182/182 +
+ + +
+ 100% + Branches + 7/7 +
+ + +
+ 100% + Functions + 2/2 +
+ + +
+ 100% + Lines + 182/182 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FileStatementsBranchesFunctionsLines
index.js +
+
100%46/46100%1/1100%0/0100%46/46
main.js +
+
100%69/69100%4/4100%1/1100%69/69
native.js +
+
100%67/67100%2/2100%1/1100%67/67
+
+
+
+ + + + + + + + \ No newline at end of file diff --git a/stats/base/dists/arcsine/variance/index.js.html b/stats/base/dists/arcsine/variance/index.js.html new file mode 100644 index 000000000..aa9c47bf5 --- /dev/null +++ b/stats/base/dists/arcsine/variance/index.js.html @@ -0,0 +1,223 @@ + + + + + + Code coverage report for stats/base/dists/arcsine/variance/lib/index.js + + + + + + + + + +
+
+

All files / stats/base/dists/arcsine/variance/lib index.js

+
+ +
+ 100% + Statements + 46/46 +
+ + +
+ 100% + Branches + 1/1 +
+ + +
+ 100% + Functions + 0/0 +
+ + +
+ 100% + Lines + 46/46 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +471x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x + 
/**
+* @license Apache-2.0
+*
+* Copyright (c) 2018 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+*    http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+ 
+'use strict';
+ 
+/**
+* Arcsine distribution variance.
+*
+* @module @stdlib/stats/base/dists/arcsine/variance
+*
+* @example
+* var variance = require( '@stdlib/stats/base/dists/arcsine/variance' );
+*
+* var v = variance( 0.0, 1.0 );
+* // returns ~0.125
+*
+* v = variance( 4.0, 12.0 );
+* // returns 8.0
+*
+* v = variance( 2.0, 8.0 );
+* // returns ~4.5
+*/
+ 
+// MODULES //
+ 
+var main = require( './main.js' );
+ 
+ 
+// EXPORTS //
+ 
+module.exports = main;
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/stats/base/dists/arcsine/variance/main.js.html b/stats/base/dists/arcsine/variance/main.js.html new file mode 100644 index 000000000..2e1f8b8e8 --- /dev/null +++ b/stats/base/dists/arcsine/variance/main.js.html @@ -0,0 +1,292 @@ + + + + + + Code coverage report for stats/base/dists/arcsine/variance/lib/main.js + + + + + + + + + +
+
+

All files / stats/base/dists/arcsine/variance/lib main.js

+
+ +
+ 100% + Statements + 69/69 +
+ + +
+ 100% + Branches + 4/4 +
+ + +
+ 100% + Functions + 1/1 +
+ + +
+ 100% + Lines + 69/69 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +701x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1006x +1006x +4x +4x +1002x +1006x +1x +1x +1x +1x +1x + 
/**
+* @license Apache-2.0
+*
+* Copyright (c) 2018 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+*    http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+ 
+'use strict';
+ 
+// MODULES //
+ 
+var pow = require( '@stdlib/math/base/special/pow' );
+ 
+ 
+// MAIN //
+ 
+/**
+* Returns the variance of an arcsine distribution.
+*
+* @param {number} a - minimum support
+* @param {number} b - maximum support
+* @returns {PositiveNumber} variance
+*
+* @example
+* var v = variance( 0.0, 1.0 );
+* // returns ~0.125
+*
+* @example
+* var v = variance( 4.0, 12.0 );
+* // returns 8.0
+*
+* @example
+* var v = variance( -4.0, 4.0 );
+* // returns 8.0
+*
+* @example
+* var v = variance( 1.0, -0.1 );
+* // returns NaN
+*
+* @example
+* var v = variance( 2.0, NaN );
+* // returns NaN
+*
+* @example
+* var v = variance( NaN, 2.0 );
+* // returns NaN
+*/
+function variance( a, b ) {
+	if ( a >= b ) {
+		return NaN;
+	}
+	return 0.125 * pow( b-a, 2.0 );
+}
+ 
+ 
+// EXPORTS //
+ 
+module.exports = variance;
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/stats/base/dists/arcsine/variance/native.js.html b/stats/base/dists/arcsine/variance/native.js.html new file mode 100644 index 000000000..ac78f32f8 --- /dev/null +++ b/stats/base/dists/arcsine/variance/native.js.html @@ -0,0 +1,286 @@ + + + + + + Code coverage report for stats/base/dists/arcsine/variance/lib/native.js + + + + + + + + + +
+
+

All files / stats/base/dists/arcsine/variance/lib native.js

+
+ +
+ 100% + Statements + 67/67 +
+ + +
+ 100% + Branches + 2/2 +
+ + +
+ 100% + Functions + 1/1 +
+ + +
+ 100% + Lines + 67/67 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +681x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1006x +1006x +1006x +1x +1x +1x +1x +1x + 
/**
+* @license Apache-2.0
+*
+* Copyright (c) 2024 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+*    http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+ 
+'use strict';
+ 
+// MODULES //
+ 
+var addon = require( './../src/addon.node' );
+ 
+ 
+// MAIN //
+ 
+/**
+* Returns the variance of an arcsine distribution.
+*
+* @private
+* @param {number} a - minimum support
+* @param {number} b - maximum support
+* @returns {PositiveNumber} variance
+*
+* @example
+* var v = variance( 0.0, 1.0 );
+* // returns ~0.125
+*
+* @example
+* var v = variance( 4.0, 12.0 );
+* // returns 8.0
+*
+* @example
+* var v = variance( -4.0, 4.0 );
+* // returns 8.0
+*
+* @example
+* var v = variance( 1.0, -0.1 );
+* // returns NaN
+*
+* @example
+* var v = variance( 2.0, NaN );
+* // returns NaN
+*
+* @example
+* var v = variance( NaN, 2.0 );
+* // returns NaN
+*/
+function variance( a, b ) {
+	return addon( a, b );
+}
+ 
+ 
+// EXPORTS //
+ 
+module.exports = variance;
+ 
+ +
+
+ + + + + + + + \ No newline at end of file