From 01e09ee2342c778f745f27140b281904d55dd60b Mon Sep 17 00:00:00 2001 From: stdlib-bot <82920195+stdlib-bot@users.noreply.github.com> Date: Thu, 26 Dec 2024 17:59:04 +0000 Subject: [PATCH] Update artifacts --- stats/base/dmin/coverage.ndjson | 1 + stats/base/dmin/dmin.js.html | 241 +++++++++++++++++++ stats/base/dmin/dmin.native.js.html | 238 +++++++++++++++++++ stats/base/dmin/index.html | 206 ++++++++++++++++ stats/base/dmin/index.js.html | 289 +++++++++++++++++++++++ stats/base/dmin/main.js.html | 190 +++++++++++++++ stats/base/dmin/native.js.html | 190 +++++++++++++++ stats/base/dmin/ndarray.js.html | 313 +++++++++++++++++++++++++ stats/base/dmin/ndarray.native.js.html | 241 +++++++++++++++++++ 9 files changed, 1909 insertions(+) create mode 100644 stats/base/dmin/coverage.ndjson create mode 100644 stats/base/dmin/dmin.js.html create mode 100644 stats/base/dmin/dmin.native.js.html create mode 100644 stats/base/dmin/index.html create mode 100644 stats/base/dmin/index.js.html create mode 100644 stats/base/dmin/main.js.html create mode 100644 stats/base/dmin/native.js.html create mode 100644 stats/base/dmin/ndarray.js.html create mode 100644 stats/base/dmin/ndarray.native.js.html diff --git a/stats/base/dmin/coverage.ndjson b/stats/base/dmin/coverage.ndjson new file mode 100644 index 000000000..034e66d55 --- /dev/null +++ b/stats/base/dmin/coverage.ndjson @@ -0,0 +1 @@ +[369,369,100,25,25,100,4,4,100,369,369,100,"217351fe17ccb4479b1193ebaa3cdd36d89017b5","2024-12-26 12:56:36 -0500"] diff --git a/stats/base/dmin/dmin.js.html b/stats/base/dmin/dmin.js.html new file mode 100644 index 000000000..d9405fcf6 --- /dev/null +++ b/stats/base/dmin/dmin.js.html @@ -0,0 +1,241 @@ + + + + + + Code coverage report for stats/base/dmin/lib/dmin.js + + + + + + + + + +
+
+

All files / stats/base/dmin/lib dmin.js

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

+ 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 +532x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +12x +12x +12x +2x +2x +2x +2x +2x + 
/**
+* @license Apache-2.0
+*
+* Copyright (c) 2020 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 stride2offset = require( '@stdlib/strided/base/stride2offset' );
+var ndarray = require( './ndarray.js' );
+ 
+ 
+// MAIN //
+ 
+/**
+* Computes the minimum value of a double-precision floating-point strided array.
+*
+* @param {PositiveInteger} N - number of indexed elements
+* @param {Float64Array} x - input array
+* @param {integer} strideX - stride length
+* @returns {number} minimum value
+*
+* @example
+* var Float64Array = require( '@stdlib/array/float64' );
+*
+* var x = new Float64Array( [ 1.0, -2.0, 2.0 ] );
+*
+* var v = dmin( x.length, x, 1 );
+* // returns -2.0
+*/
+function dmin( N, x, strideX ) {
+	return ndarray( N, x, strideX, stride2offset( N, strideX ) );
+}
+ 
+ 
+// EXPORTS //
+ 
+module.exports = dmin;
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/stats/base/dmin/dmin.native.js.html b/stats/base/dmin/dmin.native.js.html new file mode 100644 index 000000000..18a6297d7 --- /dev/null +++ b/stats/base/dmin/dmin.native.js.html @@ -0,0 +1,238 @@ + + + + + + Code coverage report for stats/base/dmin/lib/dmin.native.js + + + + + + + + + +
+
+

All files / stats/base/dmin/lib dmin.native.js

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

+ 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 +522x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +37x +37x +37x +2x +2x +2x +2x +2x + 
/**
+* @license Apache-2.0
+*
+* Copyright (c) 2020 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 //
+ 
+/**
+* Computes the minimum value of a double-precision floating-point strided array.
+*
+* @param {PositiveInteger} N - number of indexed elements
+* @param {Float64Array} x - input array
+* @param {integer} strideX - stride length
+* @returns {number} minimum value
+*
+* @example
+* var Float64Array = require( '@stdlib/array/float64' );
+*
+* var x = new Float64Array( [ 1.0, -2.0, 2.0 ] );
+*
+* var v = dmin( x.length, x, 1 );
+* // returns -2.0
+*/
+function dmin( N, x, strideX ) {
+	return addon( N, x, strideX );
+}
+ 
+ 
+// EXPORTS //
+ 
+module.exports = dmin;
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/stats/base/dmin/index.html b/stats/base/dmin/index.html new file mode 100644 index 000000000..75f3f3d25 --- /dev/null +++ b/stats/base/dmin/index.html @@ -0,0 +1,206 @@ + + + + + + Code coverage report for stats/base/dmin/lib + + + + + + + + + +
+
+

All files stats/base/dmin/lib

+
+ +
+ 100% + Statements + 369/369 +
+ + +
+ 100% + Branches + 25/25 +
+ + +
+ 100% + Functions + 4/4 +
+ + +
+ 100% + Lines + 369/369 +
+ + +
+

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

+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FileStatementsBranchesFunctionsLines
dmin.js +
+
100%52/52100%2/2100%1/1100%52/52
dmin.native.js +
+
100%51/51100%2/2100%1/1100%51/51
index.js +
+
100%68/68100%3/3100%0/0100%68/68
main.js +
+
100%35/35100%1/1100%0/0100%35/35
native.js +
+
100%35/35100%1/1100%0/0100%35/35
ndarray.js +
+
100%76/76100%14/14100%1/1100%76/76
ndarray.native.js +
+
100%52/52100%2/2100%1/1100%52/52
+
+
+
+ + + + + + + + \ No newline at end of file diff --git a/stats/base/dmin/index.js.html b/stats/base/dmin/index.js.html new file mode 100644 index 000000000..c14e938eb --- /dev/null +++ b/stats/base/dmin/index.js.html @@ -0,0 +1,289 @@ + + + + + + Code coverage report for stats/base/dmin/lib/index.js + + + + + + + + + +
+
+

All files / stats/base/dmin/lib index.js

+
+ +
+ 100% + Statements + 68/68 +
+ + +
+ 100% + Branches + 3/3 +
+ + +
+ 100% + Functions + 0/0 +
+ + +
+ 100% + Lines + 68/68 +
+ + +
+

+ 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 +693x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +1x +3x +2x +2x +3x +3x +3x +3x +3x +3x +3x + 
/**
+* @license Apache-2.0
+*
+* Copyright (c) 2020 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';
+ 
+/**
+* Compute the minimum value of a double-precision floating-point strided array.
+*
+* @module @stdlib/stats/base/dmin
+*
+* @example
+* var Float64Array = require( '@stdlib/array/float64' );
+* var dmin = require( '@stdlib/stats/base/dmin' );
+*
+* var x = new Float64Array( [ 1.0, -2.0, 2.0 ] );
+*
+* var v = dmin( x.length, x, 1 );
+* // returns -2.0
+*
+* @example
+* var Float64Array = require( '@stdlib/array/float64' );
+* var dmin = require( '@stdlib/stats/base/dmin' );
+*
+* var x = new Float64Array( [ 2.0, 1.0, 2.0, -2.0, -2.0, 2.0, 3.0, 4.0 ] );
+*
+* var v = dmin.ndarray( 4, x, 2, 1 );
+* // returns -2.0
+*/
+ 
+// MODULES //
+ 
+var join = require( 'path' ).join;
+var tryRequire = require( '@stdlib/utils/try-require' );
+var isError = require( '@stdlib/assert/is-error' );
+var main = require( './main.js' );
+ 
+ 
+// MAIN //
+ 
+var dmin;
+var tmp = tryRequire( join( __dirname, './native.js' ) );
+if ( isError( tmp ) ) {
+	dmin = main;
+} else {
+	dmin = tmp;
+}
+ 
+ 
+// EXPORTS //
+ 
+module.exports = dmin;
+ 
+// exports: { "ndarray": "dmin.ndarray" }
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/stats/base/dmin/main.js.html b/stats/base/dmin/main.js.html new file mode 100644 index 000000000..50b3e14c7 --- /dev/null +++ b/stats/base/dmin/main.js.html @@ -0,0 +1,190 @@ + + + + + + Code coverage report for stats/base/dmin/lib/main.js + + + + + + + + + +
+
+

All files / stats/base/dmin/lib main.js

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

+ 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 +361x +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) 2020 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 setReadOnly = require( '@stdlib/utils/define-nonenumerable-read-only-property' );
+var dmin = require( './dmin.js' );
+var ndarray = require( './ndarray.js' );
+ 
+ 
+// MAIN //
+ 
+setReadOnly( dmin, 'ndarray', ndarray );
+ 
+ 
+// EXPORTS //
+ 
+module.exports = dmin;
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/stats/base/dmin/native.js.html b/stats/base/dmin/native.js.html new file mode 100644 index 000000000..5b4017cf3 --- /dev/null +++ b/stats/base/dmin/native.js.html @@ -0,0 +1,190 @@ + + + + + + Code coverage report for stats/base/dmin/lib/native.js + + + + + + + + + +
+
+

All files / stats/base/dmin/lib native.js

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

+ 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 +361x +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) 2020 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 setReadOnly = require( '@stdlib/utils/define-nonenumerable-read-only-property' );
+var dmin = require( './dmin.native.js' );
+var ndarray = require( './ndarray.native.js' );
+ 
+ 
+// MAIN //
+ 
+setReadOnly( dmin, 'ndarray', ndarray );
+ 
+ 
+// EXPORTS //
+ 
+module.exports = dmin;
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/stats/base/dmin/ndarray.js.html b/stats/base/dmin/ndarray.js.html new file mode 100644 index 000000000..a12da6c9d --- /dev/null +++ b/stats/base/dmin/ndarray.js.html @@ -0,0 +1,313 @@ + + + + + + Code coverage report for stats/base/dmin/lib/ndarray.js + + + + + + + + + +
+
+

All files / stats/base/dmin/lib ndarray.js

+
+ +
+ 100% + Statements + 76/76 +
+ + +
+ 100% + Branches + 14/14 +
+ + +
+ 100% + Functions + 1/1 +
+ + +
+ 100% + Lines + 76/76 +
+ + +
+

+ 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 +70 +71 +72 +73 +74 +75 +76 +773x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +24x +24x +24x +24x +24x +24x +24x +4x +4x +24x +6x +6x +14x +14x +24x +36x +36x +36x +2x +2x +36x +14x +14x +36x +12x +24x +3x +3x +3x +3x +3x + 
/**
+* @license Apache-2.0
+*
+* Copyright (c) 2020 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' );
+var isNegativeZero = require( '@stdlib/math/base/assert/is-negative-zero' );
+ 
+ 
+// MAIN //
+ 
+/**
+* Computes the minimum value of a double-precision floating-point strided array.
+*
+* @param {PositiveInteger} N - number of indexed elements
+* @param {Float64Array} x - input array
+* @param {integer} strideX - stride length
+* @param {NonNegativeInteger} offsetX - starting index
+* @returns {number} minimum value
+*
+* @example
+* var Float64Array = require( '@stdlib/array/float64' );
+*
+* var x = new Float64Array( [ 2.0, 1.0, 2.0, -2.0, -2.0, 2.0, 3.0, 4.0 ] );
+*
+* var v = dmin( 4, x, 2, 1 );
+* // returns -2.0
+*/
+function dmin( N, x, strideX, offsetX ) {
+	var min;
+	var ix;
+	var v;
+	var i;
+ 
+	if ( N <= 0 ) {
+		return NaN;
+	}
+	if ( N === 1 || strideX === 0 ) {
+		return x[ offsetX ];
+	}
+	ix = offsetX;
+	min = x[ ix ];
+	for ( i = 1; i < N; i++ ) {
+		ix += strideX;
+		v = x[ ix ];
+		if ( isnan( v ) ) {
+			return v;
+		}
+		if ( v < min || ( v === min && isNegativeZero( v ) ) ) {
+			min = v;
+		}
+	}
+	return min;
+}
+ 
+ 
+// EXPORTS //
+ 
+module.exports = dmin;
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/stats/base/dmin/ndarray.native.js.html b/stats/base/dmin/ndarray.native.js.html new file mode 100644 index 000000000..a1338843b --- /dev/null +++ b/stats/base/dmin/ndarray.native.js.html @@ -0,0 +1,241 @@ + + + + + + Code coverage report for stats/base/dmin/lib/ndarray.native.js + + + + + + + + + +
+
+

All files / stats/base/dmin/lib ndarray.native.js

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

+ 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 +532x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +12x +12x +12x +2x +2x +2x +2x +2x + 
/**
+* @license Apache-2.0
+*
+* Copyright (c) 2020 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 //
+ 
+/**
+* Computes the minimum value of a double-precision floating-point strided array.
+*
+* @param {PositiveInteger} N - number of indexed elements
+* @param {Float64Array} x - input array
+* @param {integer} strideX - stride length
+* @param {NonNegativeInteger} offsetX - starting index
+* @returns {number} minimum value
+*
+* @example
+* var Float64Array = require( '@stdlib/array/float64' );
+*
+* var x = new Float64Array( [ 2.0, 1.0, 2.0, -2.0, -2.0, 2.0, 3.0, 4.0 ] );
+*
+* var v = dmin( 4, x, 2, 1 );
+* // returns -2.0
+*/
+function dmin( N, x, strideX, offsetX ) {
+	return addon.ndarray( N, x, strideX, offsetX );
+}
+ 
+ 
+// EXPORTS //
+ 
+module.exports = dmin;
+ 
+ +
+
+ + + + + + + + \ No newline at end of file