diff --git a/stats/base/dists/uniform/mean/coverage.ndjson b/stats/base/dists/uniform/mean/coverage.ndjson new file mode 100644 index 000000000..c1c535b6b --- /dev/null +++ b/stats/base/dists/uniform/mean/coverage.ndjson @@ -0,0 +1 @@ +[175,175,100,7,7,100,2,2,100,175,175,100,"47cee8a4ffbcfa084eb2996699487f5a71f26ae9","2024-12-16 20:27:32 +0530"] diff --git a/stats/base/dists/uniform/mean/index.html b/stats/base/dists/uniform/mean/index.html new file mode 100644 index 000000000..5065980d6 --- /dev/null +++ b/stats/base/dists/uniform/mean/index.html @@ -0,0 +1,146 @@ + + + + + + Code coverage report for stats/base/dists/uniform/mean/lib + + + + + + + + + +
+
+

All files stats/base/dists/uniform/mean/lib

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

+ 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%66/66100%4/4100%1/1100%66/66
native.js +
+
100%63/63100%2/2100%1/1100%63/63
+
+
+
+ + + + + + + + \ No newline at end of file diff --git a/stats/base/dists/uniform/mean/index.js.html b/stats/base/dists/uniform/mean/index.js.html new file mode 100644 index 000000000..719d5a553 --- /dev/null +++ b/stats/base/dists/uniform/mean/index.js.html @@ -0,0 +1,223 @@ + + + + + + Code coverage report for stats/base/dists/uniform/mean/lib/index.js + + + + + + + + + +
+
+

All files / stats/base/dists/uniform/mean/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';
+ 
+/**
+* Uniform distribution expected value.
+*
+* @module @stdlib/stats/base/dists/uniform/mean
+*
+* @example
+* var mean = require( '@stdlib/stats/base/dists/uniform/mean' );
+*
+* var v = mean( 0.0, 1.0 );
+* // returns 0.5
+*
+* v = mean( 4.0, 12.0 );
+* // returns 8.0
+*
+* v = mean( 2.0, 8.0 );
+* // returns 5.0
+*/
+ 
+// MODULES //
+ 
+var mean = require( './main.js' );
+ 
+ 
+// EXPORTS //
+ 
+module.exports = mean;
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/stats/base/dists/uniform/mean/main.js.html b/stats/base/dists/uniform/mean/main.js.html new file mode 100644 index 000000000..2a882523c --- /dev/null +++ b/stats/base/dists/uniform/mean/main.js.html @@ -0,0 +1,283 @@ + + + + + + Code coverage report for stats/base/dists/uniform/mean/lib/main.js + + + + + + + + + +
+
+

All files / stats/base/dists/uniform/mean/lib main.js

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

+ 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 +671x +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 +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';
+ 
+// MAIN //
+ 
+/**
+* Returns the expected value of a uniform distribution.
+*
+* @param {number} a - minimum support
+* @param {number} b - maximum support
+* @returns {number} expected value
+*
+* @example
+* var v = mean( 0.0, 1.0 );
+* // returns 0.5
+*
+* @example
+* var v = mean( 4.0, 12.0 );
+* // returns 8.0
+*
+* @example
+* var v = mean( -4.0, 4.0 );
+* // returns 0.0
+*
+* @example
+* var v = mean( 1.0, -0.1 );
+* // returns NaN
+*
+* @example
+* var v = mean( 2.0, NaN );
+* // returns NaN
+*
+* @example
+* var v = mean( NaN, 2.0 );
+* // returns NaN
+*/
+function mean( a, b ) {
+	if (
+		a >= b
+	) {
+		return NaN;
+	}
+	return 0.5 * ( a + b );
+}
+ 
+ 
+// EXPORTS //
+ 
+module.exports = mean;
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/stats/base/dists/uniform/mean/native.js.html b/stats/base/dists/uniform/mean/native.js.html new file mode 100644 index 000000000..eff65f269 --- /dev/null +++ b/stats/base/dists/uniform/mean/native.js.html @@ -0,0 +1,274 @@ + + + + + + Code coverage report for stats/base/dists/uniform/mean/lib/native.js + + + + + + + + + +
+
+

All files / stats/base/dists/uniform/mean/lib native.js

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

+ 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 +641x +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 mean of a Uniform distribution.
+*
+* @private
+* @param {number} a - lower bound
+* @param {number} b - upper bound
+* @returns {number} mean
+*
+* @example
+* var v = mean( 0.0, 1.0 );
+* // returns 0.5
+*
+* @example
+* var v = mean( 2.0, 8.0 );
+* // returns 5.0
+*
+* @example
+* var v = mean( NaN, 1.0 );
+* // returns NaN
+*
+* @example
+* var v = mean( 0.0, NaN );
+* // returns NaN
+*
+* @example
+* var v = mean( 3.0, 2.0 );
+* // returns NaN
+*/
+function mean( a, b ) {
+	return addon( a, b );
+}
+ 
+ 
+// EXPORTS //
+ 
+module.exports = mean;
+ 
+ +
+
+ + + + + + + + \ No newline at end of file