diff --git a/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/README.md b/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/README.md
index 7f1cc5a336d5..b97874269d4a 100644
--- a/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/README.md
+++ b/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/README.md
@@ -2,7 +2,7 @@
@license Apache-2.0
-Copyright (c) 2025 The Stdlib Authors.
+Copyright (c) 2026 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.
@@ -20,12 +20,10 @@ limitations under the License.
# smidrange
-> Compute the [mid-range][mid-range] of a one-dimensional single-precision floating-point ndarray.
+> Compute the mid-range of a one-dimensional single-precision floating-point ndarray.
-The [**mid-range**][mid-range], or **mid-extreme**, is the arithmetic mean of the maximum and minimum values in a data set. The measure is the midpoint of the range and a measure of central tendency.
-
@@ -40,17 +38,17 @@ var smidrange = require( '@stdlib/stats/base/ndarray/smidrange' );
#### smidrange( arrays )
-Computes the [mid-range][mid-range] of a one-dimensional single-precision floating-point ndarray.
+Computes the mid-range of a one-dimensional single-precision floating-point ndarray.
```javascript
var Float32Array = require( '@stdlib/array/float32' );
var ndarray = require( '@stdlib/ndarray/base/ctor' );
-var xbuf = new Float32Array( [ 1.0, 2.0, 5.0, 10.0 ] );
+var xbuf = new Float32Array( [ 1.0, 3.0, 4.0, 2.0 ] );
var x = new ndarray( 'float32', xbuf, [ 4 ], [ 1 ], 0, 'row-major' );
var v = smidrange( [ x ] );
-// returns 5.5
+// returns 2.5
```
The function has the following parameters:
@@ -78,12 +76,12 @@ The function has the following parameters:
```javascript
-var uniform = require( '@stdlib/random/array/uniform' );
+var discreteUniform = require( '@stdlib/random/array/discrete-uniform' );
var ndarray = require( '@stdlib/ndarray/base/ctor' );
var ndarray2array = require( '@stdlib/ndarray/to-array' );
var smidrange = require( '@stdlib/stats/base/ndarray/smidrange' );
-var xbuf = uniform( 10, -50.0, 50.0, {
+var xbuf = discreteUniform( 10, -50, 50, {
'dtype': 'float32'
});
var x = new ndarray( 'float32', xbuf, [ xbuf.length ], [ 1 ], 0, 'row-major' );
@@ -97,11 +95,152 @@ console.log( v );
-
+
+
+* * *
+
+
+
+## C APIs
+
+
+
+
+
+
+
+
+
+
+
+### Usage
+
+```c
+#include "stdlib/stats/base/ndarray/smidrange.h"
+```
+
+#### stdlib_stats_smidrange( arrays )
+
+Computes the mid-range of a one-dimensional single-precision floating-point ndarray.
+
+```c
+#include "stdlib/ndarray/ctor.h"
+#include "stdlib/ndarray/dtypes.h"
+#include "stdlib/ndarray/index_modes.h"
+#include "stdlib/ndarray/orders.h"
+#include "stdlib/ndarray/base/bytes_per_element.h"
+#include
+
+// Create an ndarray:
+const float data[] = { 1.0f, 2.0f, 3.0f, 4.0f };
+int64_t shape[] = { 4 };
+int64_t strides[] = { STDLIB_NDARRAY_FLOAT32_BYTES_PER_ELEMENT };
+int8_t submodes[] = { STDLIB_NDARRAY_INDEX_ERROR };
+
+struct ndarray *x = stdlib_ndarray_allocate( STDLIB_NDARRAY_FLOAT32, (uint8_t *)data, 1, shape, strides, 0, STDLIB_NDARRAY_ROW_MAJOR, STDLIB_NDARRAY_INDEX_ERROR, 1, submodes );
+
+// Compute the mid-range:
+const struct ndarray *arrays[] = { x };
+float v = stdlib_stats_smidrange( arrays );
+// returns 2.5f
+
+// Free allocated memory:
+stdlib_ndarray_free( x );
+```
+
+The function accepts the following arguments:
+
+- **arrays**: `[in] struct ndarray**` list containing a one-dimensional input ndarray.
+
+```c
+float stdlib_stats_smidrange( const struct ndarray *arrays[] );
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+### Examples
+
+```c
+#include "stdlib/stats/base/ndarray/smidrange.h"
+#include "stdlib/ndarray/ctor.h"
+#include "stdlib/ndarray/dtypes.h"
+#include "stdlib/ndarray/index_modes.h"
+#include "stdlib/ndarray/orders.h"
+#include "stdlib/ndarray/base/bytes_per_element.h"
+#include
+#include
+#include
+
+int main( void ) {
+ // Create a data buffer:
+ const float data[] = { 1.0f, -2.0f, 3.0f, -4.0f, 5.0f, -6.0f, 7.0f, -8.0f };
+
+ // Specify the number of array dimensions:
+ const int64_t ndims = 1;
+
+ // Specify the array shape:
+ int64_t shape[] = { 4 };
+
+ // Specify the array strides:
+ int64_t strides[] = { 2*STDLIB_NDARRAY_FLOAT32_BYTES_PER_ELEMENT };
+
+ // Specify the byte offset:
+ const int64_t offset = 0;
+
+ // Specify the array order:
+ const enum STDLIB_NDARRAY_ORDER order = STDLIB_NDARRAY_ROW_MAJOR;
+
+ // Specify the index mode:
+ const enum STDLIB_NDARRAY_INDEX_MODE imode = STDLIB_NDARRAY_INDEX_ERROR;
+
+ // Specify the subscript index modes:
+ int8_t submodes[] = { STDLIB_NDARRAY_INDEX_ERROR };
+ const int64_t nsubmodes = 1;
+
+ // Create an ndarray:
+ struct ndarray *x = stdlib_ndarray_allocate( STDLIB_NDARRAY_FLOAT32, (uint8_t *)data, ndims, shape, strides, offset, order, imode, nsubmodes, submodes );
+ if ( x == NULL ) {
+ fprintf( stderr, "Error allocating memory.\n" );
+ exit( 1 );
+ }
+
+ // Define a list of ndarrays:
+ const struct ndarray *arrays[] = { x };
+
+ // Compute the mid-range:
+ float v = stdlib_stats_smidrange( arrays );
+
+ // Print the result:
+ printf( "mid-range: %f\n", v );
+
+ // Free allocated memory:
+ stdlib_ndarray_free( x );
+}
+```
+
+
+
+
-
+
@@ -115,8 +254,6 @@ console.log( v );
-[mid-range]: https://en.wikipedia.org/wiki/Mid-range
-
diff --git a/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/benchmark/benchmark.js b/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/benchmark/benchmark.js
index ba4b94d4bab9..adcbceacc678 100644
--- a/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/benchmark/benchmark.js
+++ b/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/benchmark/benchmark.js
@@ -1,7 +1,7 @@
/**
* @license Apache-2.0
*
-* Copyright (c) 2025 The Stdlib Authors.
+* Copyright (c) 2026 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.
@@ -25,8 +25,9 @@ var uniform = require( '@stdlib/random/array/uniform' );
var isnanf = require( '@stdlib/math/base/assert/is-nanf' );
var pow = require( '@stdlib/math/base/special/pow' );
var ndarray = require( '@stdlib/ndarray/base/ctor' );
+var format = require( '@stdlib/string/format' );
var pkg = require( './../package.json' ).name;
-var smidrange = require( './../lib' );
+var smidrange = require( './../lib/main.js' );
// VARIABLES //
@@ -101,7 +102,7 @@ function main() {
for ( i = min; i <= max; i++ ) {
len = pow( 10, i );
f = createBenchmark( len );
- bench( pkg+':len='+len, f );
+ bench( format( '%s:len=%d', pkg, len ), f );
}
}
diff --git a/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/benchmark/benchmark.native.js b/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/benchmark/benchmark.native.js
new file mode 100644
index 000000000000..c23166d5b5c3
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/benchmark/benchmark.native.js
@@ -0,0 +1,114 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 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 resolve = require( 'path' ).resolve;
+var bench = require( '@stdlib/bench' );
+var uniform = require( '@stdlib/random/array/uniform' );
+var isnanf = require( '@stdlib/math/base/assert/is-nanf' );
+var pow = require( '@stdlib/math/base/special/pow' );
+var ndarray = require( '@stdlib/ndarray/base/ctor' );
+var format = require( '@stdlib/string/format' );
+var tryRequire = require( '@stdlib/utils/try-require' );
+var pkg = require( './../package.json' ).name;
+
+
+// VARIABLES //
+
+var smidrange = tryRequire( resolve( __dirname, './../lib/native.js' ) );
+var opts = {
+ 'skip': ( smidrange instanceof Error )
+};
+var options = {
+ 'dtype': 'float32'
+};
+
+
+// FUNCTIONS //
+
+/**
+* Creates a benchmark function.
+*
+* @private
+* @param {PositiveInteger} len - array length
+* @returns {Function} benchmark function
+*/
+function createBenchmark( len ) {
+ var xbuf;
+ var x;
+
+ xbuf = uniform( len, -10.0, 10.0, options );
+ x = new ndarray( options.dtype, xbuf, [ len ], [ 1 ], 0, 'row-major' );
+
+ return benchmark;
+
+ /**
+ * Benchmark function.
+ *
+ * @private
+ * @param {Benchmark} b - benchmark instance
+ */
+ function benchmark( b ) {
+ var v;
+ var i;
+
+ b.tic();
+ for ( i = 0; i < b.iterations; i++ ) {
+ v = smidrange( [ x ] );
+ if ( isnanf( v ) ) {
+ b.fail( 'should not return NaN' );
+ }
+ }
+ b.toc();
+ if ( isnanf( v ) ) {
+ b.fail( 'should not return NaN' );
+ }
+ b.pass( 'benchmark finished' );
+ b.end();
+ }
+}
+
+
+// MAIN //
+
+/**
+* Main execution sequence.
+*
+* @private
+*/
+function main() {
+ var len;
+ var min;
+ var max;
+ var f;
+ var i;
+
+ min = 1; // 10^min
+ max = 6; // 10^max
+
+ for ( i = min; i <= max; i++ ) {
+ len = pow( 10, i );
+ f = createBenchmark( len );
+ bench( format( '%s::native:len=%d', pkg, len ), opts, f );
+ }
+}
+
+main();
diff --git a/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/benchmark/c/Makefile b/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/benchmark/c/Makefile
new file mode 100644
index 000000000000..0756dc7da20a
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/benchmark/c/Makefile
@@ -0,0 +1,146 @@
+#/
+# @license Apache-2.0
+#
+# Copyright (c) 2026 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.
+#/
+
+# VARIABLES #
+
+ifndef VERBOSE
+ QUIET := @
+else
+ QUIET :=
+endif
+
+# Determine the OS ([1][1], [2][2]).
+#
+# [1]: https://en.wikipedia.org/wiki/Uname#Examples
+# [2]: http://stackoverflow.com/a/27776822/2225624
+OS ?= $(shell uname)
+ifneq (, $(findstring MINGW,$(OS)))
+ OS := WINNT
+else
+ifneq (, $(findstring MSYS,$(OS)))
+ OS := WINNT
+else
+ifneq (, $(findstring CYGWIN,$(OS)))
+ OS := WINNT
+else
+ifneq (, $(findstring Windows_NT,$(OS)))
+ OS := WINNT
+endif
+endif
+endif
+endif
+
+# Define the program used for compiling C source files:
+ifdef C_COMPILER
+ CC := $(C_COMPILER)
+else
+ CC := gcc
+endif
+
+# Define the command-line options when compiling C files:
+CFLAGS ?= \
+ -std=c99 \
+ -O3 \
+ -Wall \
+ -pedantic
+
+# Determine whether to generate position independent code ([1][1], [2][2]).
+#
+# [1]: https://gcc.gnu.org/onlinedocs/gcc/Code-Gen-Options.html#Code-Gen-Options
+# [2]: http://stackoverflow.com/questions/5311515/gcc-fpic-option
+ifeq ($(OS), WINNT)
+ fPIC ?=
+else
+ fPIC ?= -fPIC
+endif
+
+# List of includes (e.g., `-I /foo/bar -I /beep/boop/include`):
+INCLUDE ?=
+
+# List of source files:
+SOURCE_FILES ?=
+
+# List of libraries (e.g., `-lopenblas -lpthread`):
+LIBRARIES ?=
+
+# List of library paths (e.g., `-L /foo/bar -L /beep/boop`):
+LIBPATH ?=
+
+# List of C targets:
+c_targets := benchmark.length.out
+
+
+# RULES #
+
+#/
+# Compiles source files.
+#
+# @param {string} [C_COMPILER] - C compiler (e.g., `gcc`)
+# @param {string} [CFLAGS] - C compiler options
+# @param {(string|void)} [fPIC] - compiler flag determining whether to generate position independent code (e.g., `-fPIC`)
+# @param {string} [INCLUDE] - list of includes (e.g., `-I /foo/bar -I /beep/boop/include`)
+# @param {string} [SOURCE_FILES] - list of source files
+# @param {string} [LIBPATH] - list of library paths (e.g., `-L /foo/bar -L /beep/boop`)
+# @param {string} [LIBRARIES] - list of libraries (e.g., `-lopenblas -lpthread`)
+#
+# @example
+# make
+#
+# @example
+# make all
+#/
+all: $(c_targets)
+
+.PHONY: all
+
+#/
+# Compiles C source files.
+#
+# @private
+# @param {string} CC - C compiler (e.g., `gcc`)
+# @param {string} CFLAGS - C compiler options
+# @param {(string|void)} fPIC - compiler flag determining whether to generate position independent code (e.g., `-fPIC`)
+# @param {string} INCLUDE - list of includes (e.g., `-I /foo/bar`)
+# @param {string} SOURCE_FILES - list of source files
+# @param {string} LIBPATH - list of library paths (e.g., `-L /foo/bar`)
+# @param {string} LIBRARIES - list of libraries (e.g., `-lopenblas`)
+#/
+$(c_targets): %.out: %.c
+ $(QUIET) $(CC) $(CFLAGS) $(fPIC) $(INCLUDE) -o $@ $(SOURCE_FILES) $< $(LIBPATH) -lm $(LIBRARIES)
+
+#/
+# Runs compiled benchmarks.
+#
+# @example
+# make run
+#/
+run: $(c_targets)
+ $(QUIET) ./$<
+
+.PHONY: run
+
+#/
+# Removes generated files.
+#
+# @example
+# make clean
+#/
+clean:
+ $(QUIET) -rm -f *.o *.out
+
+.PHONY: clean
diff --git a/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/benchmark/c/benchmark.length.c b/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/benchmark/c/benchmark.length.c
new file mode 100644
index 000000000000..cf07b6392e61
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/benchmark/c/benchmark.length.c
@@ -0,0 +1,185 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 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.
+*/
+
+#include "stdlib/stats/base/ndarray/smidrange.h"
+#include "stdlib/ndarray/ctor.h"
+#include "stdlib/ndarray/dtypes.h"
+#include "stdlib/ndarray/index_modes.h"
+#include "stdlib/ndarray/orders.h"
+#include "stdlib/ndarray/base/bytes_per_element.h"
+#include
+#include
+#include
+#include
+#include
+#include
+
+#define NAME "smidrange"
+#define ITERATIONS 1000000
+#define REPEATS 3
+#define MIN 1
+#define MAX 6
+
+/**
+* Prints the TAP version.
+*/
+static void print_version( void ) {
+ printf( "TAP version 13\n" );
+}
+
+/**
+* Prints the TAP summary.
+*
+* @param total total number of tests
+* @param passing total number of passing tests
+*/
+static void print_summary( int total, int passing ) {
+ printf( "#\n" );
+ printf( "1..%d\n", total ); // TAP plan
+ printf( "# total %d\n", total );
+ printf( "# pass %d\n", passing );
+ printf( "#\n" );
+ printf( "# ok\n" );
+}
+
+/**
+* Prints benchmarks results.
+*
+* @param iterations number of iterations
+* @param elapsed elapsed time in seconds
+*/
+static void print_results( int iterations, double elapsed ) {
+ double rate = (double)iterations / elapsed;
+ printf( " ---\n" );
+ printf( " iterations: %d\n", iterations );
+ printf( " elapsed: %0.9f\n", elapsed );
+ printf( " rate: %0.9f\n", rate );
+ printf( " ...\n" );
+}
+
+/**
+* Returns a clock time.
+*
+* @return clock time
+*/
+static double tic( void ) {
+ struct timeval now;
+ gettimeofday( &now, NULL );
+ return (double)now.tv_sec + (double)now.tv_usec/1.0e6;
+}
+
+/**
+* Generates a random number on the interval [0,1).
+*
+* @return random number
+*/
+static float rand_float( void ) {
+ int r = rand();
+ return (float)r / ( (float)RAND_MAX + 1.0f );
+}
+
+/**
+* Runs a benchmark.
+*
+* @param iterations number of iterations
+* @param len array length
+* @return elapsed time in seconds
+*/
+static double benchmark( int iterations, int len ) {
+ enum STDLIB_NDARRAY_INDEX_MODE imode;
+ const struct ndarray *arrays[ 1 ];
+ enum STDLIB_NDARRAY_ORDER order;
+ int8_t submodes[ 1 ];
+ int64_t strides[ 1 ];
+ int64_t shape[ 1 ];
+ int64_t nsubmodes;
+ struct ndarray *x;
+ int64_t offset;
+ double elapsed;
+ int64_t ndims;
+ float *data;
+ float v;
+ double t;
+ int i;
+
+ ndims = 1;
+ shape[ 0 ] = len;
+ strides[ 0 ] = STDLIB_NDARRAY_FLOAT32_BYTES_PER_ELEMENT;
+ offset = 0;
+ order = STDLIB_NDARRAY_ROW_MAJOR;
+ imode = STDLIB_NDARRAY_INDEX_ERROR;
+ submodes[ 0 ] = imode;
+ nsubmodes = 1;
+
+ data = (float *) malloc( len * sizeof( float ) );
+ for ( i = 0; i < len; i++ ) {
+ data[ i ] = ( rand_float() * 20000.0f ) - 10000.0f;
+ }
+ // cppcheck-suppress invalidPointerCast
+ x = stdlib_ndarray_allocate( STDLIB_NDARRAY_FLOAT32, (uint8_t *)data, ndims, shape, strides, offset, order, imode, nsubmodes, submodes );
+ arrays[ 0 ] = x;
+
+ v = 0.0f;
+ t = tic();
+ for ( i = 0; i < iterations; i++ ) {
+ v = stdlib_stats_smidrange( arrays );
+ if ( v != v ) {
+ printf( "should not return NaN\n" );
+ break;
+ }
+ }
+ elapsed = tic() - t;
+ if ( v != v ) {
+ printf( "should not return NaN\n" );
+ }
+ stdlib_ndarray_free( x );
+ free( data );
+ arrays[ 0 ] = NULL;
+
+ return elapsed;
+}
+
+/**
+* Main execution sequence.
+*/
+int main( void ) {
+ double elapsed;
+ int count;
+ int iter;
+ int len;
+ int i;
+ int j;
+
+ // Use the current time to seed the random number generator:
+ srand( time( NULL ) );
+
+ print_version();
+ count = 0;
+ for ( i = MIN; i <= MAX; i++ ) {
+ len = pow( 10, i );
+ iter = ITERATIONS / pow( 10, i-1 );
+ for ( j = 0; j < REPEATS; j++ ) {
+ count += 1;
+ printf( "# c::%s:len=%d\n", NAME, len );
+ elapsed = benchmark( iter, len );
+ print_results( iter, elapsed );
+ printf( "ok %d benchmark finished\n", count );
+ }
+ }
+ print_summary( count, count );
+}
diff --git a/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/binding.gyp b/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/binding.gyp
new file mode 100644
index 000000000000..0d6508a12e99
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/binding.gyp
@@ -0,0 +1,170 @@
+# @license Apache-2.0
+#
+# Copyright (c) 2026 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.
+
+# A `.gyp` file for building a Node.js native add-on.
+#
+# [1]: https://gyp.gsrc.io/docs/InputFormatReference.md
+# [2]: https://gyp.gsrc.io/docs/UserDocumentation.md
+{
+ # List of files to include in this file:
+ 'includes': [
+ './include.gypi',
+ ],
+
+ # Define variables to be used throughout the configuration for all targets:
+ 'variables': {
+ # Target name should match the add-on export name:
+ 'addon_target_name%': 'addon',
+
+ # Set variables based on the host OS:
+ 'conditions': [
+ [
+ 'OS=="win"',
+ {
+ # Define the object file suffix:
+ 'obj': 'obj',
+ },
+ {
+ # Define the object file suffix:
+ 'obj': 'o',
+ }
+ ], # end condition (OS=="win")
+ ], # end conditions
+ }, # end variables
+
+ # Define compile targets:
+ 'targets': [
+
+ # Target to generate an add-on:
+ {
+ # The target name should match the add-on export name:
+ 'target_name': '<(addon_target_name)',
+
+ # Define dependencies:
+ 'dependencies': [],
+
+ # Define directories which contain relevant include headers:
+ 'include_dirs': [
+ # Local include directory:
+ '<@(include_dirs)',
+ ],
+
+ # List of source files:
+ 'sources': [
+ '<@(src_files)',
+ ],
+
+ # Settings which should be applied when a target's object files are used as linker input:
+ 'link_settings': {
+ # Define libraries:
+ 'libraries': [
+ '<@(libraries)',
+ ],
+
+ # Define library directories:
+ 'library_dirs': [
+ '<@(library_dirs)',
+ ],
+ },
+
+ # C/C++ compiler flags:
+ 'cflags': [
+ # Enable commonly used warning options:
+ '-Wall',
+
+ # Aggressive optimization:
+ '-O3',
+ ],
+
+ # C specific compiler flags:
+ 'cflags_c': [
+ # Specify the C standard to which a program is expected to conform:
+ '-std=c99',
+ ],
+
+ # C++ specific compiler flags:
+ 'cflags_cpp': [
+ # Specify the C++ standard to which a program is expected to conform:
+ '-std=c++11',
+ ],
+
+ # Linker flags:
+ 'ldflags': [],
+
+ # Apply conditions based on the host OS:
+ 'conditions': [
+ [
+ 'OS=="mac"',
+ {
+ # Linker flags:
+ 'ldflags': [
+ '-undefined dynamic_lookup',
+ '-Wl,-no-pie',
+ '-Wl,-search_paths_first',
+ ],
+ },
+ ], # end condition (OS=="mac")
+ [
+ 'OS!="win"',
+ {
+ # C/C++ flags:
+ 'cflags': [
+ # Generate platform-independent code:
+ '-fPIC',
+ ],
+ },
+ ], # end condition (OS!="win")
+ ], # end conditions
+ }, # end target <(addon_target_name)
+
+ # Target to copy a generated add-on to a standard location:
+ {
+ 'target_name': 'copy_addon',
+
+ # Declare that the output of this target is not linked:
+ 'type': 'none',
+
+ # Define dependencies:
+ 'dependencies': [
+ # Require that the add-on be generated before building this target:
+ '<(addon_target_name)',
+ ],
+
+ # Define a list of actions:
+ 'actions': [
+ {
+ 'action_name': 'copy_addon',
+ 'message': 'Copying addon...',
+
+ # Explicitly list the inputs in the command-line invocation below:
+ 'inputs': [],
+
+ # Declare the expected outputs:
+ 'outputs': [
+ '<(addon_output_dir)/<(addon_target_name).node',
+ ],
+
+ # Define the command-line invocation:
+ 'action': [
+ 'cp',
+ '<(PRODUCT_DIR)/<(addon_target_name).node',
+ '<(addon_output_dir)/<(addon_target_name).node',
+ ],
+ },
+ ], # end actions
+ }, # end target copy_addon
+ ], # end targets
+}
diff --git a/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/examples/c/Makefile b/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/examples/c/Makefile
new file mode 100644
index 000000000000..c8f8e9a1517b
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/examples/c/Makefile
@@ -0,0 +1,146 @@
+#/
+# @license Apache-2.0
+#
+# Copyright (c) 2026 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.
+#/
+
+# VARIABLES #
+
+ifndef VERBOSE
+ QUIET := @
+else
+ QUIET :=
+endif
+
+# Determine the OS ([1][1], [2][2]).
+#
+# [1]: https://en.wikipedia.org/wiki/Uname#Examples
+# [2]: http://stackoverflow.com/a/27776822/2225624
+OS ?= $(shell uname)
+ifneq (, $(findstring MINGW,$(OS)))
+ OS := WINNT
+else
+ifneq (, $(findstring MSYS,$(OS)))
+ OS := WINNT
+else
+ifneq (, $(findstring CYGWIN,$(OS)))
+ OS := WINNT
+else
+ifneq (, $(findstring Windows_NT,$(OS)))
+ OS := WINNT
+endif
+endif
+endif
+endif
+
+# Define the program used for compiling C source files:
+ifdef C_COMPILER
+ CC := $(C_COMPILER)
+else
+ CC := gcc
+endif
+
+# Define the command-line options when compiling C files:
+CFLAGS ?= \
+ -std=c99 \
+ -O3 \
+ -Wall \
+ -pedantic
+
+# Determine whether to generate position independent code ([1][1], [2][2]).
+#
+# [1]: https://gcc.gnu.org/onlinedocs/gcc/Code-Gen-Options.html#Code-Gen-Options
+# [2]: http://stackoverflow.com/questions/5311515/gcc-fpic-option
+ifeq ($(OS), WINNT)
+ fPIC ?=
+else
+ fPIC ?= -fPIC
+endif
+
+# List of includes (e.g., `-I /foo/bar -I /beep/boop/include`):
+INCLUDE ?=
+
+# List of source files:
+SOURCE_FILES ?=
+
+# List of libraries (e.g., `-lopenblas -lpthread`):
+LIBRARIES ?=
+
+# List of library paths (e.g., `-L /foo/bar -L /beep/boop`):
+LIBPATH ?=
+
+# List of C targets:
+c_targets := example.out
+
+
+# RULES #
+
+#/
+# Compiles source files.
+#
+# @param {string} [C_COMPILER] - C compiler (e.g., `gcc`)
+# @param {string} [CFLAGS] - C compiler options
+# @param {(string|void)} [fPIC] - compiler flag determining whether to generate position independent code (e.g., `-fPIC`)
+# @param {string} [INCLUDE] - list of includes (e.g., `-I /foo/bar -I /beep/boop/include`)
+# @param {string} [SOURCE_FILES] - list of source files
+# @param {string} [LIBPATH] - list of library paths (e.g., `-L /foo/bar -L /beep/boop`)
+# @param {string} [LIBRARIES] - list of libraries (e.g., `-lopenblas -lpthread`)
+#
+# @example
+# make
+#
+# @example
+# make all
+#/
+all: $(c_targets)
+
+.PHONY: all
+
+#/
+# Compiles C source files.
+#
+# @private
+# @param {string} CC - C compiler (e.g., `gcc`)
+# @param {string} CFLAGS - C compiler options
+# @param {(string|void)} fPIC - compiler flag determining whether to generate position independent code (e.g., `-fPIC`)
+# @param {string} INCLUDE - list of includes (e.g., `-I /foo/bar`)
+# @param {string} SOURCE_FILES - list of source files
+# @param {string} LIBPATH - list of library paths (e.g., `-L /foo/bar`)
+# @param {string} LIBRARIES - list of libraries (e.g., `-lopenblas`)
+#/
+$(c_targets): %.out: %.c
+ $(QUIET) $(CC) $(CFLAGS) $(fPIC) $(INCLUDE) -o $@ $(SOURCE_FILES) $< $(LIBPATH) -lm $(LIBRARIES)
+
+#/
+# Runs compiled examples.
+#
+# @example
+# make run
+#/
+run: $(c_targets)
+ $(QUIET) ./$<
+
+.PHONY: run
+
+#/
+# Removes generated files.
+#
+# @example
+# make clean
+#/
+clean:
+ $(QUIET) -rm -f *.o *.out
+
+.PHONY: clean
diff --git a/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/examples/c/example.c b/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/examples/c/example.c
new file mode 100644
index 000000000000..38ea86b6a17a
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/examples/c/example.c
@@ -0,0 +1,74 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 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.
+*/
+
+#include "stdlib/stats/base/ndarray/smidrange.h"
+#include "stdlib/ndarray/ctor.h"
+#include "stdlib/ndarray/dtypes.h"
+#include "stdlib/ndarray/index_modes.h"
+#include "stdlib/ndarray/orders.h"
+#include "stdlib/ndarray/base/bytes_per_element.h"
+#include
+#include
+#include
+
+int main( void ) {
+ // Create a data buffer:
+ const float data[] = { 1.0f, -2.0f, 3.0f, -4.0f, 5.0f, -6.0f, 7.0f, -8.0f };
+
+ // Specify the number of array dimensions:
+ const int64_t ndims = 1;
+
+ // Specify the array shape:
+ int64_t shape[] = { 4 };
+
+ // Specify the array strides:
+ int64_t strides[] = { 2*STDLIB_NDARRAY_FLOAT32_BYTES_PER_ELEMENT };
+
+ // Specify the byte offset:
+ const int64_t offset = 0;
+
+ // Specify the array order:
+ const enum STDLIB_NDARRAY_ORDER order = STDLIB_NDARRAY_ROW_MAJOR;
+
+ // Specify the index mode:
+ const enum STDLIB_NDARRAY_INDEX_MODE imode = STDLIB_NDARRAY_INDEX_ERROR;
+
+ // Specify the subscript index modes:
+ int8_t submodes[] = { STDLIB_NDARRAY_INDEX_ERROR };
+ const int64_t nsubmodes = 1;
+
+ // Create an ndarray:
+ // cppcheck-suppress invalidPointerCast
+ struct ndarray *x = stdlib_ndarray_allocate( STDLIB_NDARRAY_FLOAT32, (uint8_t *)data, ndims, shape, strides, offset, order, imode, nsubmodes, submodes );
+ if ( x == NULL ) {
+ fprintf( stderr, "Error allocating memory.\n" );
+ exit( 1 );
+ }
+
+ // Define a list of ndarrays:
+ const struct ndarray *arrays[] = { x };
+
+ // Compute the minimum value:
+ float v = stdlib_stats_smidrange( arrays );
+
+ // Print the result:
+ printf( "min: %f\n", v );
+
+ // Free allocated memory:
+ stdlib_ndarray_free( x );
+}
diff --git a/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/include.gypi b/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/include.gypi
new file mode 100644
index 000000000000..bee8d41a2caf
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/include.gypi
@@ -0,0 +1,53 @@
+# @license Apache-2.0
+#
+# Copyright (c) 2026 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.
+
+# A GYP include file for building a Node.js native add-on.
+#
+# Main documentation:
+#
+# [1]: https://gyp.gsrc.io/docs/InputFormatReference.md
+# [2]: https://gyp.gsrc.io/docs/UserDocumentation.md
+{
+ # Define variables to be used throughout the configuration for all targets:
+ 'variables': {
+ # Source directory:
+ 'src_dir': './src',
+
+ # Include directories:
+ 'include_dirs': [
+ '} arrays - array-like object containing an input ndarray
+* @returns {number} mid-range
+*
+* @example
+* var Float32Array = require( '@stdlib/array/float32' );
+* var ndarray = require( '@stdlib/ndarray/base/ctor' );
+*
+* var xbuf = new Float32Array( [ 1.0, 3.0, 4.0, 2.0 ] );
+* var x = new ndarray( 'float32', xbuf, [ 4 ], [ 1 ], 0, 'row-major' );
+*
+* var v = smidrange( [ x ] );
+* // returns 2.5
+*/
+function smidrange( arrays ) {
+ var x = arrays[ 0 ];
+ return addon( getData( x ), serialize( x ) );
+}
+
+
+// EXPORTS //
+
+module.exports = smidrange;
diff --git a/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/manifest.json b/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/manifest.json
new file mode 100644
index 000000000000..f160f23d6318
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/manifest.json
@@ -0,0 +1,110 @@
+{
+ "options": {
+ "task": "build",
+ "wasm": false
+ },
+ "fields": [
+ {
+ "field": "src",
+ "resolve": true,
+ "relative": true
+ },
+ {
+ "field": "include",
+ "resolve": true,
+ "relative": true
+ },
+ {
+ "field": "libraries",
+ "resolve": false,
+ "relative": false
+ },
+ {
+ "field": "libpath",
+ "resolve": true,
+ "relative": false
+ }
+ ],
+ "confs": [
+ {
+ "task": "build",
+ "wasm": false,
+ "src": [
+ "./src/main.c"
+ ],
+ "include": [
+ "./include"
+ ],
+ "libraries": [],
+ "libpath": [],
+ "dependencies": [
+ "@stdlib/blas/base/shared",
+ "@stdlib/stats/strided/smidrange",
+ "@stdlib/ndarray/ctor",
+ "@stdlib/ndarray/base/napi/addon-arguments",
+ "@stdlib/napi/export",
+ "@stdlib/napi/argv",
+ "@stdlib/napi/create-double"
+ ]
+ },
+ {
+ "task": "benchmark",
+ "wasm": false,
+ "src": [
+ "./src/main.c"
+ ],
+ "include": [
+ "./include"
+ ],
+ "libraries": [],
+ "libpath": [],
+ "dependencies": [
+ "@stdlib/blas/base/shared",
+ "@stdlib/stats/strided/smidrange",
+ "@stdlib/ndarray/ctor",
+ "@stdlib/ndarray/dtypes",
+ "@stdlib/ndarray/index-modes",
+ "@stdlib/ndarray/orders",
+ "@stdlib/ndarray/base/bytes-per-element"
+ ]
+ },
+ {
+ "task": "examples",
+ "wasm": false,
+ "src": [
+ "./src/main.c"
+ ],
+ "include": [
+ "./include"
+ ],
+ "libraries": [],
+ "libpath": [],
+ "dependencies": [
+ "@stdlib/blas/base/shared",
+ "@stdlib/stats/strided/smidrange",
+ "@stdlib/ndarray/ctor",
+ "@stdlib/ndarray/dtypes",
+ "@stdlib/ndarray/index-modes",
+ "@stdlib/ndarray/orders",
+ "@stdlib/ndarray/base/bytes-per-element"
+ ]
+ },
+ {
+ "task": "",
+ "wasm": true,
+ "src": [
+ "./src/main.c"
+ ],
+ "include": [
+ "./include"
+ ],
+ "libraries": [],
+ "libpath": [],
+ "dependencies": [
+ "@stdlib/blas/base/shared",
+ "@stdlib/stats/strided/smidrange",
+ "@stdlib/ndarray/ctor"
+ ]
+ }
+ ]
+}
diff --git a/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/package.json b/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/package.json
index c6d89c98dc30..9b9993c515b3 100644
--- a/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/package.json
+++ b/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/package.json
@@ -14,11 +14,15 @@
}
],
"main": "./lib",
+ "browser": "./lib/main.js",
+ "gypfile": true,
"directories": {
"benchmark": "./benchmark",
"doc": "./docs",
"example": "./examples",
+ "include": "./include",
"lib": "./lib",
+ "src": "./src",
"test": "./test"
},
"types": "./docs/types",
diff --git a/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/src/Makefile b/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/src/Makefile
new file mode 100644
index 000000000000..2caf905cedbe
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/src/Makefile
@@ -0,0 +1,70 @@
+#/
+# @license Apache-2.0
+#
+# Copyright (c) 2026 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.
+#/
+
+# VARIABLES #
+
+ifndef VERBOSE
+ QUIET := @
+else
+ QUIET :=
+endif
+
+# Determine the OS ([1][1], [2][2]).
+#
+# [1]: https://en.wikipedia.org/wiki/Uname#Examples
+# [2]: http://stackoverflow.com/a/27776822/2225624
+OS ?= $(shell uname)
+ifneq (, $(findstring MINGW,$(OS)))
+ OS := WINNT
+else
+ifneq (, $(findstring MSYS,$(OS)))
+ OS := WINNT
+else
+ifneq (, $(findstring CYGWIN,$(OS)))
+ OS := WINNT
+else
+ifneq (, $(findstring Windows_NT,$(OS)))
+ OS := WINNT
+endif
+endif
+endif
+endif
+
+
+# RULES #
+
+#/
+# Removes generated files for building an add-on.
+#
+# @example
+# make clean-addon
+#/
+clean-addon:
+ $(QUIET) -rm -f *.o *.node
+
+.PHONY: clean-addon
+
+#/
+# Removes generated files.
+#
+# @example
+# make clean
+#/
+clean: clean-addon
+
+.PHONY: clean
diff --git a/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/src/addon.c b/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/src/addon.c
new file mode 100644
index 000000000000..fb402da89115
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/src/addon.c
@@ -0,0 +1,58 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 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.
+*/
+
+#include "stdlib/stats/base/ndarray/smidrange.h"
+#include "stdlib/ndarray/ctor.h"
+#include "stdlib/ndarray/base/napi/addon_arguments.h"
+#include "stdlib/napi/export.h"
+#include "stdlib/napi/argv.h"
+#include "stdlib/napi/create_double.h"
+#include
+#include
+
+/**
+* Receives JavaScript callback invocation data.
+*
+* @param env environment under which the function is invoked
+* @param info callback data
+* @return Node-API value
+*/
+static napi_value addon( napi_env env, napi_callback_info info ) {
+ STDLIB_NAPI_ARGV( env, info, argv, argc, 2 );
+
+ // Process provided arguments:
+ struct ndarray *arrays[ 1 ];
+ napi_value err;
+ napi_status status = stdlib_ndarray_napi_addon_arguments( env, argv, 2, 1, arrays, &err );
+ assert( status == napi_ok );
+ if ( err != NULL ) {
+ status = napi_throw( env, err );
+ assert( status == napi_ok );
+ return NULL;
+ }
+ // Perform computation:
+ STDLIB_NAPI_CREATE_DOUBLE( env, (double)stdlib_stats_smidrange( arrays ), v );
+
+ // Free allocated memory:
+ stdlib_ndarray_free( arrays[ 0 ] );
+ arrays[ 0 ] = NULL;
+
+ return v;
+}
+
+STDLIB_NAPI_MODULE_EXPORT_FCN( addon )
diff --git a/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/src/main.c b/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/src/main.c
new file mode 100644
index 000000000000..d543e6ea4ca2
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/src/main.c
@@ -0,0 +1,33 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 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.
+*/
+
+#include "stdlib/stats/base/ndarray/smidrange.h"
+#include "stdlib/stats/strided/smidrange.h"
+#include "stdlib/ndarray/ctor.h"
+#include "stdlib/blas/base/shared.h"
+
+/**
+* Computes the mid-range of a one-dimensional single-precision floating-point ndarray.
+*
+* @param arrays list containing an input ndarray
+* @return mid-range
+*/
+float stdlib_stats_smidrange( const struct ndarray *arrays[] ) {
+ const struct ndarray *x = arrays[ 0 ];
+ return API_SUFFIX(stdlib_strided_smidrange_ndarray)( stdlib_ndarray_dimension( x, 0 ), (const float *)stdlib_ndarray_data( x ), stdlib_ndarray_stride_elements( x, 0 ), stdlib_ndarray_offset_elements( x ) );
+}
diff --git a/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/test/test.js b/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/test/test.js
index 80b6374956ed..4ed2f4618cda 100644
--- a/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/test/test.js
+++ b/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/test/test.js
@@ -1,7 +1,7 @@
/**
* @license Apache-2.0
*
-* Copyright (c) 2025 The Stdlib Authors.
+* Copyright (c) 2026 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.
@@ -21,28 +21,16 @@
// MODULES //
var tape = require( 'tape' );
-var isnanf = require( '@stdlib/math/base/assert/is-nanf' );
-var isPositiveZerof = require( '@stdlib/math/base/assert/is-positive-zerof' );
-var Float32Array = require( '@stdlib/array/float32' );
-var ndarray = require( '@stdlib/ndarray/base/ctor' );
+var proxyquire = require( 'proxyquire' );
+var IS_BROWSER = require( '@stdlib/assert/is-browser' );
var smidrange = require( './../lib' );
-// FUNCTIONS //
+// VARIABLES //
-/**
-* Returns a one-dimensional ndarray.
-*
-* @private
-* @param {Collection} buffer - underlying data buffer
-* @param {NonNegativeInteger} length - number of indexed elements
-* @param {integer} stride - stride length
-* @param {NonNegativeInteger} offset - index offset
-* @returns {ndarray} one-dimensional ndarray
-*/
-function vector( buffer, length, stride, offset ) {
- return new ndarray( 'float32', buffer, [ length ], [ stride ], offset, 'row-major' );
-}
+var opts = {
+ 'skip': IS_BROWSER
+};
// TESTS //
@@ -53,140 +41,37 @@ tape( 'main export is a function', function test( t ) {
t.end();
});
-tape( 'the function has an arity of 1', function test( t ) {
- t.strictEqual( smidrange.length, 1, 'has expected arity' );
- t.end();
-});
-
-tape( 'the function calculates the mid-range of an input ndarray', function test( t ) {
- var x;
- var v;
-
- x = new Float32Array( [ 1.0, -2.0, -4.0, 5.0, 0.0, 3.0 ] );
- v = smidrange( [ vector( x, 6, 1, 0 ) ] );
- t.strictEqual( v, 0.5, 'returns expected value' );
-
- x = new Float32Array( [ -4.0, -5.0 ] );
- v = smidrange( [ vector( x, 2, 1, 0 ) ] );
- t.strictEqual( v, -4.5, 'returns expected value' );
-
- x = new Float32Array( [ -0.0, 0.0, -0.0 ] );
- v = smidrange( [ vector( x, 3, 1, 0 ) ] );
- t.strictEqual( isPositiveZerof( v ), true, 'returns expected value' );
-
- x = new Float32Array( [ NaN ] );
- v = smidrange( [ vector( x, 1, 1, 0 ) ] );
- t.strictEqual( isnanf( v ), true, 'returns expected value' );
-
- x = new Float32Array( [ NaN, NaN ] );
- v = smidrange( [ vector( x, 2, 1, 0 ) ] );
- t.strictEqual( isnanf( v ), true, 'returns expected value' );
+tape( 'if a native implementation is available, the main export is the native implementation', opts, function test( t ) {
+ var smidrange = proxyquire( './../lib', {
+ '@stdlib/utils/try-require': tryRequire
+ });
+ t.strictEqual( smidrange, mock, 'returns expected value' );
t.end();
-});
-
-tape( 'when provided an empty input ndarray, the function returns `NaN`', function test( t ) {
- var x;
- var v;
- x = new Float32Array( [] );
- v = smidrange( [ vector( x, 0, 1, 0 ) ] );
- t.strictEqual( isnanf( v ), true, 'returns expected value' );
+ function tryRequire() {
+ return mock;
+ }
- t.end();
+ function mock() {
+ // Mock...
+ }
});
-tape( 'when provided an input ndarray containing a single element, the function returns that element', function test( t ) {
- var x;
- var v;
+tape( 'if a native implementation is not available, the main export is a JavaScript implementation', opts, function test( t ) {
+ var smidrange;
+ var main;
- x = new Float32Array( [ 1.0 ] );
- v = smidrange( [ vector( x, 1, 1, 0 ) ] );
- t.strictEqual( v, 1.0, 'returns expected value' );
+ main = require( './../lib/main.js' );
- x = new Float32Array( [ NaN ] );
- v = smidrange( [ vector( x, 1, 1, 0 ) ] );
- t.strictEqual( isnanf( v ), true, 'returns expected value' );
+ smidrange = proxyquire( './../lib', {
+ '@stdlib/utils/try-require': tryRequire
+ });
+ t.strictEqual( smidrange, main, 'returns expected value' );
t.end();
-});
-tape( 'the function supports ndarrays having positive strides', function test( t ) {
- var x;
- var v;
-
- x = new Float32Array([
- 1.0, // 0
- 2.0,
- 2.0, // 1
- -7.0,
- -2.0, // 2
- 3.0,
- 4.0, // 3
- 2.0,
- 6.0
- ]);
-
- v = smidrange( [ vector( x, 4, 2, 0 ) ] );
- t.strictEqual( v, 1.0, 'returns expected value' );
-
- t.end();
-});
-
-tape( 'the function supports ndarrays having negative strides', function test( t ) {
- var x;
- var v;
-
- x = new Float32Array([
- 1.0, // 3
- 2.0,
- 2.0, // 2
- -7.0,
- -2.0, // 1
- 3.0,
- 4.0, // 0
- 2.0,
- 6.0
- ]);
-
- v = smidrange( [ vector( x, 4, -2, 6 ) ] );
- t.strictEqual( v, 1.0, 'returns expected value' );
-
- t.end();
-});
-
-tape( 'if provided an ndarray having a stride equal to `0`, the function returns the first element', function test( t ) {
- var x;
- var v;
-
- x = new Float32Array( [ 1.0, -2.0, -4.0, 5.0, 3.0 ] );
- v = smidrange( [ vector( x, 5, 0, 0 ) ] );
- t.strictEqual( v, 1.0, 'returns expected value' );
-
- x = new Float32Array( [ NaN, -2.0, -4.0, 5.0, 3.0 ] );
- v = smidrange( [ vector( x, 5, 0, 0 ) ] );
- t.strictEqual( isnanf( v ), true, 'returns expected value' );
-
- t.end();
-});
-
-tape( 'the function supports ndarrays having non-zero offsets', function test( t ) {
- var x;
- var v;
-
- x = new Float32Array([
- 2.0,
- 1.0, // 0
- 2.0,
- -2.0, // 1
- -2.0,
- 2.0, // 2
- 3.0,
- 4.0 // 3
- ]);
-
- v = smidrange( [ vector( x, 4, 2, 1 ) ] );
- t.strictEqual( v, 1.0, 'returns expected value' );
-
- t.end();
+ function tryRequire() {
+ return new Error( 'Cannot find module' );
+ }
});
diff --git a/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/test/test.main.js b/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/test/test.main.js
new file mode 100644
index 000000000000..1e8e14a7ae26
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/test/test.main.js
@@ -0,0 +1,172 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 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 tape = require( 'tape' );
+var isnanf = require( '@stdlib/math/base/assert/is-nanf' );
+var Float32Array = require( '@stdlib/array/float32' );
+var ndarray = require( '@stdlib/ndarray/base/ctor' );
+var smidrange = require( './../lib/main.js' );
+
+
+// FUNCTIONS //
+
+/**
+* Returns a one-dimensional ndarray.
+*
+* @private
+* @param {Float32Array} buffer - underlying data buffer
+* @param {NonNegativeInteger} length - number of indexed elements
+* @param {integer} stride - stride length
+* @param {NonNegativeInteger} offset - index offset
+* @returns {ndarray} one-dimensional ndarray
+*/
+function vector( buffer, length, stride, offset ) {
+ return new ndarray( 'float32', buffer, [ length ], [ stride ], offset, 'row-major' );
+}
+
+
+// TESTS //
+
+tape( 'main export is a function', function test( t ) {
+ t.ok( true, __filename );
+ t.strictEqual( typeof smidrange, 'function', 'main export is a function' );
+ t.end();
+});
+
+tape( 'the function has an arity of 1', function test( t ) {
+ t.strictEqual( smidrange.length, 1, 'has expected arity' );
+ t.end();
+});
+
+tape( 'the function calculates the mid-range of a one-dimensional ndarray', function test( t ) {
+ var x;
+ var v;
+
+ x = new Float32Array( [ 1.0, -2.0, -4.0, 5.0, 0.0, 3.0 ] );
+ v = smidrange( [ vector( x, 6, 1, 0 ) ] );
+ t.strictEqual( v, 0.5, 'returns expected value' );
+
+ x = new Float32Array( [ -4.0, -5.0 ] );
+ v = smidrange( [ vector( x, 2, 1, 0 ) ] );
+ t.strictEqual( v, -4.5, 'returns expected value' );
+
+ x = new Float32Array( [ -0.0, 0.0, -0.0 ] );
+ v = smidrange( [ vector( x, 3, 1, 0 ) ] );
+ t.strictEqual( v, 0.0, 'returns expected value' );
+
+ x = new Float32Array( [ NaN ] );
+ v = smidrange( [ vector( x, 1, 1, 0 ) ] );
+ t.strictEqual( isnanf( v ), true, 'returns expected value' );
+
+ x = new Float32Array( [ NaN, NaN ] );
+ v = smidrange( [ vector( x, 2, 1, 0 ) ] );
+ t.strictEqual( isnanf( v ), true, 'returns expected value' );
+
+ t.end();
+});
+
+tape( 'if provided an empty ndarray, the function returns `NaN`', function test( t ) {
+ var x;
+ var v;
+
+ x = new Float32Array( [] );
+
+ v = smidrange( [ vector( x, 0, 1, 0 ) ] );
+ t.strictEqual( isnanf( v ), true, 'returns expected value' );
+
+ t.end();
+});
+
+tape( 'if provided an ndarray containing a single element, the function returns that element', function test( t ) {
+ var x;
+ var v;
+
+ x = new Float32Array( [ 1.0 ] );
+
+ v = smidrange( [ vector( x, 1, 1, 0 ) ] );
+ t.strictEqual( v, 1.0, 'returns expected value' );
+
+ t.end();
+});
+
+tape( 'the function supports one-dimensional ndarrays having non-unit strides', function test( t ) {
+ var x;
+ var v;
+
+ x = new Float32Array([
+ 1.0, // 0
+ 2.0,
+ 2.0, // 1
+ -7.0,
+ -2.0, // 2
+ 3.0,
+ 4.0, // 3
+ 2.0
+ ]);
+
+ v = smidrange( [ vector( x, 4, 2, 0 ) ] );
+
+ t.strictEqual( v, 1.0, 'returns expected value' );
+ t.end();
+});
+
+tape( 'the function supports one-dimensional ndarrays having negative strides', function test( t ) {
+ var x;
+ var v;
+
+ x = new Float32Array([
+ 1.0, // 3
+ 2.0,
+ 2.0, // 2
+ -7.0,
+ -2.0, // 1
+ 3.0,
+ 4.0, // 0
+ 2.0
+ ]);
+
+ v = smidrange( [ vector( x, 4, -2, 6 ) ] );
+
+ t.strictEqual( v, 1.0, 'returns expected value' );
+ t.end();
+});
+
+tape( 'the function supports one-dimensional ndarrays having non-zero offsets', function test( t ) {
+ var x;
+ var v;
+
+ x = new Float32Array([
+ 2.0,
+ 1.0, // 0
+ 2.0,
+ -2.0, // 1
+ -2.0,
+ 2.0, // 2
+ 3.0,
+ 4.0 // 3
+ ]);
+
+ v = smidrange( [ vector( x, 4, 2, 1 ) ] );
+ t.strictEqual( v, 1.0, 'returns expected value' );
+
+ t.end();
+});
diff --git a/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/test/test.native.js b/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/test/test.native.js
new file mode 100644
index 000000000000..0de08e4e4a94
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/ndarray/smidrange/test/test.native.js
@@ -0,0 +1,181 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 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 resolve = require( 'path' ).resolve;
+var tape = require( 'tape' );
+var isnanf = require( '@stdlib/math/base/assert/is-nanf' );
+var Float32Array = require( '@stdlib/array/float32' );
+var ndarray = require( '@stdlib/ndarray/base/ctor' );
+var tryRequire = require( '@stdlib/utils/try-require' );
+
+
+// VARIABLES //
+
+var smidrange = tryRequire( resolve( __dirname, './../lib/native.js' ) );
+var opts = {
+ 'skip': ( smidrange instanceof Error )
+};
+
+
+// FUNCTIONS //
+
+/**
+* Returns a one-dimensional ndarray.
+*
+* @private
+* @param {Float32Array} buffer - underlying data buffer
+* @param {NonNegativeInteger} length - number of indexed elements
+* @param {integer} stride - stride length
+* @param {NonNegativeInteger} offset - index offset
+* @returns {ndarray} one-dimensional ndarray
+*/
+function vector( buffer, length, stride, offset ) {
+ return new ndarray( 'float32', buffer, [ length ], [ stride ], offset, 'row-major' );
+}
+
+
+// TESTS //
+
+tape( 'main export is a function', opts, function test( t ) {
+ t.ok( true, __filename );
+ t.strictEqual( typeof smidrange, 'function', 'main export is a function' );
+ t.end();
+});
+
+tape( 'the function has an arity of 1', opts, function test( t ) {
+ t.strictEqual( smidrange.length, 1, 'has expected arity' );
+ t.end();
+});
+
+tape( 'the function calculates the mid-range of a one-dimensional ndarray', opts, function test( t ) {
+ var x;
+ var v;
+
+ x = new Float32Array( [ 1.0, -2.0, -4.0, 5.0, 0.0, 3.0 ] );
+ v = smidrange( [ vector( x, 6, 1, 0 ) ] );
+ t.strictEqual( v, 0.5, 'returns expected value' );
+
+ x = new Float32Array( [ -4.0, -5.0 ] );
+ v = smidrange( [ vector( x, 2, 1, 0 ) ] );
+ t.strictEqual( v, -4.5, 'returns expected value' );
+
+ x = new Float32Array( [ -0.0, 0.0, -0.0 ] );
+ v = smidrange( [ vector( x, 3, 1, 0 ) ] );
+ t.strictEqual( v, 0.0, 'returns expected value' );
+
+ x = new Float32Array( [ NaN ] );
+ v = smidrange( [ vector( x, 1, 1, 0 ) ] );
+ t.strictEqual( isnanf( v ), true, 'returns expected value' );
+
+ x = new Float32Array( [ NaN, NaN ] );
+ v = smidrange( [ vector( x, 2, 1, 0 ) ] );
+ t.strictEqual( isnanf( v ), true, 'returns expected value' );
+
+ t.end();
+});
+
+tape( 'if provided an empty ndarray, the function returns `NaN`', opts, function test( t ) {
+ var x;
+ var v;
+
+ x = new Float32Array( [] );
+
+ v = smidrange( [ vector( x, 0, 1, 0 ) ] );
+ t.strictEqual( isnanf( v ), true, 'returns expected value' );
+
+ t.end();
+});
+
+tape( 'if provided an ndarray containing a single element, the function returns that element', opts, function test( t ) {
+ var x;
+ var v;
+
+ x = new Float32Array( [ 1.0 ] );
+
+ v = smidrange( [ vector( x, 1, 1, 0 ) ] );
+ t.strictEqual( v, 1.0, 'returns expected value' );
+
+ t.end();
+});
+
+tape( 'the function supports one-dimensional ndarrays having non-unit strides', opts, function test( t ) {
+ var x;
+ var v;
+
+ x = new Float32Array([
+ 1.0, // 0
+ 2.0,
+ 2.0, // 1
+ -7.0,
+ -2.0, // 2
+ 3.0,
+ 4.0, // 3
+ 2.0
+ ]);
+
+ v = smidrange( [ vector( x, 4, 2, 0 ) ] );
+
+ t.strictEqual( v, 1.0, 'returns expected value' );
+ t.end();
+});
+
+tape( 'the function supports one-dimensional ndarrays having negative strides', opts, function test( t ) {
+ var x;
+ var v;
+
+ x = new Float32Array([
+ 1.0, // 3
+ 2.0,
+ 2.0, // 2
+ -7.0,
+ -2.0, // 1
+ 3.0,
+ 4.0, // 0
+ 2.0
+ ]);
+
+ v = smidrange( [ vector( x, 4, -2, 6 ) ] );
+
+ t.strictEqual( v, 1.0, 'returns expected value' );
+ t.end();
+});
+
+tape( 'the function supports one-dimensional ndarrays having non-zero offsets', opts, function test( t ) {
+ var x;
+ var v;
+
+ x = new Float32Array([
+ 2.0,
+ 1.0, // 0
+ 2.0,
+ -2.0, // 1
+ -2.0,
+ 2.0, // 2
+ 3.0,
+ 4.0 // 3
+ ]);
+
+ v = smidrange( [ vector( x, 4, 2, 1 ) ] );
+ t.strictEqual( v, 1.0, 'returns expected value' );
+
+ t.end();
+});