diff --git a/stats/base/dists/laplace/median/coverage.ndjson b/stats/base/dists/laplace/median/coverage.ndjson new file mode 100644 index 000000000..3f46d02e3 --- /dev/null +++ b/stats/base/dists/laplace/median/coverage.ndjson @@ -0,0 +1 @@ +[174,174,100,9,9,100,2,2,100,174,174,100,"6696082114dd5317470a7f34ea472b4f5f8eb0b2","2024-12-17 19:15:21 +0530"] diff --git a/stats/base/dists/laplace/median/index.html b/stats/base/dists/laplace/median/index.html new file mode 100644 index 000000000..8679cc5ca --- /dev/null +++ b/stats/base/dists/laplace/median/index.html @@ -0,0 +1,146 @@ + + + + + + Code coverage report for stats/base/dists/laplace/median/lib + + + + + + + + + +
+
+

All files stats/base/dists/laplace/median/lib

+
+ +
+ 100% + Statements + 174/174 +
+ + +
+ 100% + Branches + 9/9 +
+ + +
+ 100% + Functions + 2/2 +
+ + +
+ 100% + Lines + 174/174 +
+ + +
+

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

+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FileStatementsBranchesFunctionsLines
index.js +
+
100%43/43100%1/1100%0/0100%43/43
main.js +
+
100%69/69100%6/6100%1/1100%69/69
native.js +
+
100%62/62100%2/2100%1/1100%62/62
+
+
+
+ + + + + + + + \ No newline at end of file diff --git a/stats/base/dists/laplace/median/index.js.html b/stats/base/dists/laplace/median/index.js.html new file mode 100644 index 000000000..3d4db5e3d --- /dev/null +++ b/stats/base/dists/laplace/median/index.js.html @@ -0,0 +1,214 @@ + + + + + + Code coverage report for stats/base/dists/laplace/median/lib/index.js + + + + + + + + + +
+
+

All files / stats/base/dists/laplace/median/lib index.js

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

+ 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 +441x +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';
+ 
+/**
+* Laplace distribution median.
+*
+* @module @stdlib/stats/base/dists/laplace/median
+*
+* @example
+* var median = require( '@stdlib/stats/base/dists/laplace/median' );
+*
+* var y = median( 0.0, 1.0 );
+* // returns 0.0
+*
+* y = median( 4.0, 2.0 );
+* // returns 4.0
+*/
+ 
+// MODULES //
+ 
+var median = require( './main.js' );
+ 
+ 
+// EXPORTS //
+ 
+module.exports = median;
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/stats/base/dists/laplace/median/main.js.html b/stats/base/dists/laplace/median/main.js.html new file mode 100644 index 000000000..61119d4e4 --- /dev/null +++ b/stats/base/dists/laplace/median/main.js.html @@ -0,0 +1,292 @@ + + + + + + Code coverage report for stats/base/dists/laplace/median/lib/main.js + + + + + + + + + +
+
+

All files / stats/base/dists/laplace/median/lib main.js

+
+ +
+ 100% + Statements + 69/69 +
+ + +
+ 100% + Branches + 6/6 +
+ + +
+ 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 +109x +109x +109x +109x +106x +109x +9x +9x +100x +109x +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 isnan = require( '@stdlib/math/base/assert/is-nan' );
+ 
+ 
+// MAIN //
+ 
+/**
+* Returns the median for a Laplace distribution with location `mu` and scale `b`.
+*
+* @param {number} mu - location parameter
+* @param {PositiveNumber} b - scale parameter
+* @returns {number} median
+*
+* @example
+* var y = median( 0.0, 1.0 );
+* // returns 0.0
+*
+* @example
+* var y = median( 5.0, 2.0 );
+* // returns 5.0
+*
+* @example
+* var y = median( NaN, 1.0 );
+* // returns NaN
+*
+* @example
+* var y = median( 0.0, NaN );
+* // returns NaN
+*
+* @example
+* var y = median( 0.0, 0.0 );
+* // returns NaN
+*/
+function median( mu, b ) {
+	if (
+		isnan( mu ) ||
+		isnan( b ) ||
+		b <= 0.0
+	) {
+		return NaN;
+	}
+	return mu;
+}
+ 
+ 
+// EXPORTS //
+ 
+module.exports = median;
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/stats/base/dists/laplace/median/native.js.html b/stats/base/dists/laplace/median/native.js.html new file mode 100644 index 000000000..2e3559b38 --- /dev/null +++ b/stats/base/dists/laplace/median/native.js.html @@ -0,0 +1,271 @@ + + + + + + Code coverage report for stats/base/dists/laplace/median/lib/native.js + + + + + + + + + +
+
+

All files / stats/base/dists/laplace/median/lib native.js

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

+ 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 +631x +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 +109x +109x +109x +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 median for a Laplace distribution with location `mu` and scale `b`.
+*
+* @param {number} mu - location parameter
+* @param {PositiveNumber} b - scale parameter
+* @returns {number} median
+*
+* @example
+* var y = median( 0.0, 1.0 );
+* // returns 0.0
+*
+* @example
+* var y = median( 5.0, 2.0 );
+* // returns 5.0
+*
+* @example
+* var y = median( NaN, 1.0 );
+* // returns NaN
+*
+* @example
+* var y = median( 0.0, NaN );
+* // returns NaN
+*
+* @example
+* var y = median( 0.0, 0.0 );
+* // returns NaN
+*/
+function median( mu, b ) {
+	return addon( mu, b );
+}
+ 
+ 
+// EXPORTS //
+ 
+module.exports = median;
+ 
+ +
+
+ + + + + + + + \ No newline at end of file