diff --git a/lib/node_modules/@stdlib/stats/incr/nanmpcorr/README.md b/lib/node_modules/@stdlib/stats/incr/nanmpcorr/README.md
new file mode 100644
index 000000000000..7194128f06cb
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/incr/nanmpcorr/README.md
@@ -0,0 +1,212 @@
+
+
+# incrnanmpcorr
+
+> Compute a moving [sample Pearson product-moment correlation coefficient][pearson-correlation] incrementally, ignoring `NaN` value.
+
+
+
+The [Pearson product-moment correlation coefficient][pearson-correlation] between random variables `X` and `Y` is defined as
+
+
+
+```math
+\rho_{X,Y} = \frac{\mathop{\mathrm{cov}}(X,Y)}{\sigma_X \sigma_Y}
+```
+
+
+
+
+
+where the numerator is the [covariance][covariance] and the denominator is the product of the respective standard deviations.
+
+For a sample of size `W`, the [sample Pearson product-moment correlation coefficient][pearson-correlation] is defined as
+
+
+
+```math
+r = \frac{\displaystyle\sum_{i=0}^{n-1} (x_i - \bar{x})(y_i - \bar{y})}{\sqrt{\displaystyle\sum_{i=0}^{n-1} (x_i - \bar{x})^2} \displaystyle\sqrt{\displaystyle\sum_{i=0}^{n-1} (y_i - \bar{y})^2}}
+```
+
+
+
+
+
+
+
+
+
+
+
+## Usage
+
+```javascript
+var incrnanmpcorr = require( '@stdlib/stats/incr/nanmpcorr' );
+```
+
+#### incrnanmpcorr( window\[, mx, my] )
+
+Returns an accumulator `function` which incrementally computes a moving [sample Pearson product-moment correlation coefficient][pearson-correlation]. The `window` parameter defines the number of values over which to compute the moving [sample Pearson product-moment correlation coefficient][pearson-correlation].
+
+```javascript
+var accumulator = incrnanmpcorr( 3 );
+```
+
+If means are already known, provide `mx` and `my` arguments.
+
+```javascript
+var accumulator = incrnanmpcorr( 3, 5.0, -3.14 );
+```
+
+#### accumulator( \[x, y] )
+
+If provided input values `x` and `y`, the accumulator function returns an updated [sample Pearson product-moment correlation coefficient][pearson-correlation]. If not provided input values `x` and `y`, the accumulator function returns the current [sample Pearson product-moment correlation coefficient][pearson-correlation].
+
+```javascript
+var accumulator = incrnanmpcorr( 3 );
+
+var r = accumulator();
+// returns null
+
+// Fill the window...
+r = accumulator( 2.0, 1.0 ); // [(2.0, 1.0)]
+// returns 0.0
+
+r = accumulator( 2.0, NaN ); // [(2.0, 1.0)]
+// returns 0.0
+
+r = accumulator( -5.0, 3.14 ); // [(2.0, 1.0), (-5.0, 3.14)]
+// returns ~-1.0
+
+r = accumulator( NaN, 2.71 ); // [(2.0, 1.0), (-5.0, 3.14)]
+// returns ~-1.0
+
+r = accumulator( 3.0, -1.0 ); // [(2.0, 1.0), (-5.0, 3.14), (3.0, -1.0)]
+// returns ~-0.925
+
+// Window begins sliding...
+r = accumulator( 5.0, -9.5 ); // [(-5.0, 3.14), (3.0, -1.0), (5.0, -9.5)]
+// returns ~-0.863
+
+r = accumulator( -5.0, 1.5 ); // [(3.0, -1.0), (5.0, -9.5), (-5.0, 1.5)]
+// returns ~-0.803
+
+r = accumulator();
+// returns ~-0.803
+```
+
+
+
+
+
+
+
+## Notes
+
+- Input values are type checked. If a non-numeric value or NaN is provided, the accumulator returns the current sample correlation coefficient without updating its internal state.
+- As `W` (x,y) pairs are needed to fill the window buffer, the first `W-1` returned values are calculated from smaller sample sizes. Until the window is full, each returned value is calculated from all provided values.
+
+
+
+
+
+
+
+## Examples
+
+
+
+```javascript
+var randu = require( '@stdlib/random/base/randu' );
+var incrnanmpcorr = require( '@stdlib/stats/incr/nanmpcorr' );
+
+var accumulator;
+var x;
+var y;
+var i;
+
+// Initialize an accumulator:
+accumulator = incrnanmpcorr( 5 );
+
+// For each simulated datum, update the moving sample correlation coefficient...
+for ( i = 0; i < 100; i++ ) {
+ if ( randu() < 0.2 ) {
+ x = NaN;
+ } else {
+ x = randu() * 100.0;
+ }
+ if ( randu() < 0.2 ) {
+ y = NaN;
+ } else {
+ y = randu() * 100.0;
+ }
+ accumulator( x, y );
+}
+console.log( accumulator() );
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+[pearson-correlation]: https://en.wikipedia.org/wiki/Pearson_correlation_coefficient
+
+[covariance]: https://en.wikipedia.org/wiki/Covariance
+
+
+
+[@stdlib/stats/incr/mcovariance]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/incr/mcovariance
+
+[@stdlib/stats/incr/mpcorrdist]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/incr/mpcorrdist
+
+[@stdlib/stats/incr/pcorr]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/incr/pcorr
+
+
+
+
+
+
diff --git a/lib/node_modules/@stdlib/stats/incr/nanmpcorr/benchmark/benchmark.js b/lib/node_modules/@stdlib/stats/incr/nanmpcorr/benchmark/benchmark.js
new file mode 100644
index 000000000000..1c3e1a6e9d0e
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/incr/nanmpcorr/benchmark/benchmark.js
@@ -0,0 +1,91 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 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 bench = require( '@stdlib/bench' );
+var randu = require( '@stdlib/random/base/randu' );
+var pkg = require( './../package.json' ).name;
+var incrnanmpcorr = require( './../lib' );
+
+
+// MAIN //
+
+bench( pkg, function benchmark( b ) {
+ var f;
+ var i;
+ b.tic();
+ for ( i = 0; i < b.iterations; i++ ) {
+ f = incrnanmpcorr( (i%5)+1 );
+ if ( typeof f !== 'function' ) {
+ b.fail( 'should return a function' );
+ }
+ }
+ b.toc();
+ if ( typeof f !== 'function' ) {
+ b.fail( 'should return a function' );
+ }
+ b.pass( 'benchmark finished' );
+ b.end();
+});
+
+bench( pkg+'::accumulator', function benchmark( b ) {
+ var acc;
+ var v;
+ var i;
+
+ acc = incrnanmpcorr( 5 );
+
+ b.tic();
+ for ( i = 0; i < b.iterations; i++ ) {
+ v = acc( randu(), randu() );
+ if ( v !== v ) {
+ b.fail( 'should not return NaN' );
+ }
+ }
+ b.toc();
+ if ( v !== v ) {
+ b.fail( 'should not return NaN' );
+ }
+ b.pass( 'benchmark finished' );
+ b.end();
+});
+
+bench( pkg+'::accumulator,known_means', function benchmark( b ) {
+ var acc;
+ var v;
+ var i;
+
+ acc = incrnanmpcorr( 5, 3.0, -1.0 );
+
+ b.tic();
+ for ( i = 0; i < b.iterations; i++ ) {
+ v = acc( randu(), randu() );
+ if ( v !== v ) {
+ b.fail( 'should not return NaN' );
+ }
+ }
+ b.toc();
+ if ( v !== v ) {
+ b.fail( 'should not return NaN' );
+ }
+ b.pass( 'benchmark finished' );
+ b.end();
+});
diff --git a/lib/node_modules/@stdlib/stats/incr/nanmpcorr/docs/img/equation_pearson_correlation_coefficient.svg b/lib/node_modules/@stdlib/stats/incr/nanmpcorr/docs/img/equation_pearson_correlation_coefficient.svg
new file mode 100644
index 000000000000..61e3ef3e3500
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/incr/nanmpcorr/docs/img/equation_pearson_correlation_coefficient.svg
@@ -0,0 +1,48 @@
+
\ No newline at end of file
diff --git a/lib/node_modules/@stdlib/stats/incr/nanmpcorr/docs/img/equation_sample_pearson_correlation_coefficient.svg b/lib/node_modules/@stdlib/stats/incr/nanmpcorr/docs/img/equation_sample_pearson_correlation_coefficient.svg
new file mode 100644
index 000000000000..31facfed161b
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/incr/nanmpcorr/docs/img/equation_sample_pearson_correlation_coefficient.svg
@@ -0,0 +1,126 @@
+
\ No newline at end of file
diff --git a/lib/node_modules/@stdlib/stats/incr/nanmpcorr/docs/repl.txt b/lib/node_modules/@stdlib/stats/incr/nanmpcorr/docs/repl.txt
new file mode 100644
index 000000000000..cc5ceccbb243
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/incr/nanmpcorr/docs/repl.txt
@@ -0,0 +1,56 @@
+
+{{alias}}( W[, mx, my] )
+ Returns an accumulator function which incrementally computes a moving
+ sample Pearson product-moment correlation coefficient,
+ ignoring `NaN` values.
+
+ The `W` parameter defines the number of values over which to compute the
+ moving sample correlation coefficient.
+
+ If provided values, the accumulator function returns an updated moving
+ sample correlation coefficient. If not provided values, the accumulator
+ function returns the current moving sample correlation coefficient.
+
+ As `W` (x,y) pairs are needed to fill the window buffer, the first `W-1`
+ returned values are calculated from smaller sample sizes. Until the window
+ is full, each returned value is calculated from all provided values.
+
+ Parameters
+ ----------
+ W: integer
+ Window size.
+
+ mx: number (optional)
+ Known mean.
+
+ my: number (optional)
+ Known mean.
+
+ Returns
+ -------
+ acc: Function
+ Accumulator function.
+
+ Examples
+ --------
+ > var accumulator = {{alias}}( 3 );
+ > var r = accumulator()
+ null
+ > r = accumulator( 2.0, 1.0 )
+ 0.0
+ > r = accumulator( -2.0, NaN )
+ 0.0
+ > r = accumulator( -5.0, 3.14 )
+ ~-1.0
+ > r = accumulator( NaN, 2.71 )
+ ~-1.0
+ > r = accumulator( 3.0, -1.0 )
+ ~-0.925
+ > r = accumulator( 5.0, -9.5 )
+ ~-0.863
+ > r = accumulator()
+ ~-0.863
+
+ See Also
+ --------
+
diff --git a/lib/node_modules/@stdlib/stats/incr/nanmpcorr/docs/types/index.d.ts b/lib/node_modules/@stdlib/stats/incr/nanmpcorr/docs/types/index.d.ts
new file mode 100644
index 000000000000..e5f4b00bc4eb
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/incr/nanmpcorr/docs/types/index.d.ts
@@ -0,0 +1,99 @@
+/*
+* @license Apache-2.0
+*
+* Copyright (c) 2025 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.
+*/
+
+// TypeScript Version: 4.1
+
+///
+
+/**
+* If provided arguments, returns an updated moving sample correlation coefficient.
+*
+* ## Notes
+*
+* - If provided `NaN` or a value which, when used in computations, results in `NaN`, the accumulated value is `NaN` for all future invocations.
+*
+* @param x - value
+* @param y - value
+* @returns updated moving sample correlation coefficient
+*/
+type accumulator = ( x?: number, y?: number ) => number | null;
+
+/**
+* Returns an accumulator function which incrementally computes an updated moving sample correlation coefficient, ignoring `NaN` values.
+*
+* ## Notes
+*
+* - The `W` parameter defines the number of values over which to compute the moving sample correlation coefficient.
+* - As `W` (x,y) pairs are needed to fill the window buffer, the first `W-1` returned values are calculated from smaller sample sizes. Until the window is full, each returned value is calculated from all provided values.
+*
+* @param W - window size
+* @param meanx - mean value
+* @param meany - mean value
+* @throws first argument must be a positive integer
+* @returns accumulator function
+*
+* @example
+* var accumulator = incrnanmpcorr( 3, -2.0, 10.0 );
+*/
+declare function incrnanmpcorr( W: number, meanx: number, meany: number ): accumulator;
+
+/**
+* Returns an accumulator function which incrementally computes an updated moving sample correlation coefficient, ignoring `NaN` values.
+*
+* ## Notes
+*
+* - The `W` parameter defines the number of values over which to compute the moving sample correlation coefficient.
+* - As `W` (x,y) pairs are needed to fill the window buffer, the first `W-1` returned values are calculated from smaller sample sizes. Until the window is full, each returned value is calculated from all provided values.
+*
+* @param W - window size
+* @throws first argument must be a positive integer
+* @returns accumulator function
+*
+* @example
+* var accumulator = incrnanmpcorr( 3 );
+*
+* var r = accumulator();
+* // returns null
+*
+* r = accumulator( 2.0, 1.0 );
+* // returns 0.0
+*
+* r = accumulator( -2.0, NaN );
+* // returns 0.0
+*
+* r = accumulator( -5.0, 3.14 );
+* // returns ~-1.0
+*
+* r = accumulator( NaN, 2.71 );
+* // returns ~-1.0
+*
+* r = accumulator( 3.0, -1.0 );
+* // returns ~-0.925
+*
+* r = accumulator( 5.0, -9.5 );
+* // returns ~-0.863
+*
+* r = accumulator();
+* // returns ~-0.863
+*/
+declare function incrnanmpcorr( W: number ): accumulator;
+
+
+// EXPORTS //
+
+export = incrnanmpcorr;
diff --git a/lib/node_modules/@stdlib/stats/incr/nanmpcorr/docs/types/test.ts b/lib/node_modules/@stdlib/stats/incr/nanmpcorr/docs/types/test.ts
new file mode 100644
index 000000000000..553911bf4928
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/incr/nanmpcorr/docs/types/test.ts
@@ -0,0 +1,123 @@
+/*
+* @license Apache-2.0
+*
+* Copyright (c) 2025 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.
+*/
+
+import incrnanmpcorr = require( './index' );
+
+
+// TESTS //
+
+// The function returns an accumulator function...
+{
+ incrnanmpcorr( 3 ); // $ExpectType accumulator
+ incrnanmpcorr( 3, 1.5, 2.5 ); // $ExpectType accumulator
+}
+
+// The compiler throws an error if the function is provided non-numeric arguments...
+{
+ incrnanmpcorr( 2, '5' ); // $ExpectError
+ incrnanmpcorr( 2, true ); // $ExpectError
+ incrnanmpcorr( 2, false ); // $ExpectError
+ incrnanmpcorr( 2, null ); // $ExpectError
+ incrnanmpcorr( 2, undefined ); // $ExpectError
+ incrnanmpcorr( 2, [] ); // $ExpectError
+ incrnanmpcorr( 2, {} ); // $ExpectError
+ incrnanmpcorr( 2, ( x: number ): number => x ); // $ExpectError
+
+ incrnanmpcorr( '5', 4 ); // $ExpectError
+ incrnanmpcorr( true, 4 ); // $ExpectError
+ incrnanmpcorr( false, 4 ); // $ExpectError
+ incrnanmpcorr( null, 4 ); // $ExpectError
+ incrnanmpcorr( undefined, 4 ); // $ExpectError
+ incrnanmpcorr( [], 4 ); // $ExpectError
+ incrnanmpcorr( {}, 4 ); // $ExpectError
+ incrnanmpcorr( ( x: number ): number => x, 4 ); // $ExpectError
+
+ incrnanmpcorr( '5', 2.5, 4 ); // $ExpectError
+ incrnanmpcorr( true, 2.5, 4 ); // $ExpectError
+ incrnanmpcorr( false, 2.5, 4 ); // $ExpectError
+ incrnanmpcorr( null, 2.5, 4 ); // $ExpectError
+ incrnanmpcorr( undefined, 2.5, 4 ); // $ExpectError
+ incrnanmpcorr( [], 2.5, 4 ); // $ExpectError
+ incrnanmpcorr( {}, 2.5, 4 ); // $ExpectError
+ incrnanmpcorr( ( x: number ): number => x, 2.5, 4 ); // $ExpectError
+}
+
+// The compiler throws an error if the function is provided an invalid number of arguments...
+{
+ incrnanmpcorr( ); // $ExpectError
+ incrnanmpcorr( 2, 3 ); // $ExpectError
+ incrnanmpcorr( 2, 2, 3, 4 ); // $ExpectError
+}
+
+// The function returns an accumulator function which returns an accumulated result...
+{
+ const acc = incrnanmpcorr( 3 );
+
+ acc(); // $ExpectType number | null
+ acc( 3.14, 2.0 ); // $ExpectType number | null
+}
+
+// The function returns an accumulator function which returns an accumulated result (known means)...
+{
+ const acc = incrnanmpcorr( 3, 2, -3 );
+
+ acc(); // $ExpectType number | null
+ acc( 3.14, 2.0 ); // $ExpectType number | null
+}
+
+// The compiler throws an error if the returned accumulator function is provided invalid arguments...
+{
+ const acc = incrnanmpcorr( 3 );
+
+ acc( '5', 1.0 ); // $ExpectError
+ acc( true, 1.0 ); // $ExpectError
+ acc( false, 1.0 ); // $ExpectError
+ acc( null, 1.0 ); // $ExpectError
+ acc( [], 1.0 ); // $ExpectError
+ acc( {}, 1.0 ); // $ExpectError
+ acc( ( x: number ): number => x, 1.0 ); // $ExpectError
+
+ acc( 3.14, '5' ); // $ExpectError
+ acc( 3.14, true ); // $ExpectError
+ acc( 3.14, false ); // $ExpectError
+ acc( 3.14, null ); // $ExpectError
+ acc( 3.14, [] ); // $ExpectError
+ acc( 3.14, {} ); // $ExpectError
+ acc( 3.14, ( x: number ): number => x ); // $ExpectError
+}
+
+// The compiler throws an error if the returned accumulator function is provided invalid arguments (known means)...
+{
+ const acc = incrnanmpcorr( 3, 2, -3 );
+
+ acc( '5', 1.0 ); // $ExpectError
+ acc( true, 1.0 ); // $ExpectError
+ acc( false, 1.0 ); // $ExpectError
+ acc( null, 1.0 ); // $ExpectError
+ acc( [], 1.0 ); // $ExpectError
+ acc( {}, 1.0 ); // $ExpectError
+ acc( ( x: number ): number => x, 1.0 ); // $ExpectError
+
+ acc( 3.14, '5' ); // $ExpectError
+ acc( 3.14, true ); // $ExpectError
+ acc( 3.14, false ); // $ExpectError
+ acc( 3.14, null ); // $ExpectError
+ acc( 3.14, [] ); // $ExpectError
+ acc( 3.14, {} ); // $ExpectError
+ acc( 3.14, ( x: number ): number => x ); // $ExpectError
+}
diff --git a/lib/node_modules/@stdlib/stats/incr/nanmpcorr/examples/index.js b/lib/node_modules/@stdlib/stats/incr/nanmpcorr/examples/index.js
new file mode 100644
index 000000000000..c469098e59f1
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/incr/nanmpcorr/examples/index.js
@@ -0,0 +1,48 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 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';
+
+var randu = require( '@stdlib/random/base/randu' );
+var incrnanmpcorr = require( './../lib' );
+
+var accumulator;
+var r;
+var x;
+var y;
+var i;
+
+// Initialize an accumulator:
+accumulator = incrnanmpcorr( 3 );
+
+// For each simulated datum, update the moving sample correlation coefficient...
+console.log( '\nx\ty\tCorrelation Coefficient\n' );
+for ( i = 0; i < 100; i++ ) {
+ if ( randu() < 0.2 ) {
+ x = NaN;
+ } else {
+ x = randu() * 100.0;
+ }
+ if ( randu() < 0.2 ) {
+ y = NaN;
+ } else {
+ y = randu() * 100.0;
+ }
+ r = accumulator( x, y );
+ console.log( '%d\t%d\t%d', x.toFixed( 4 ), y.toFixed( 4 ), r.toFixed( 4 ) );
+}
diff --git a/lib/node_modules/@stdlib/stats/incr/nanmpcorr/lib/index.js b/lib/node_modules/@stdlib/stats/incr/nanmpcorr/lib/index.js
new file mode 100644
index 000000000000..9089b3e9e023
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/incr/nanmpcorr/lib/index.js
@@ -0,0 +1,63 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 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 a moving sample Pearson product-moment correlation coefficient incrementally, ignoring `NaN` values.
+*
+* @module @stdlib/stats/incr/nanmpcorr
+*
+* @example
+* var incrnanmpcorr = require( '@stdlib/stats/incr/nanmpcorr' );
+*
+* var accumulator = incrnanmpcorr( 3 );
+*
+* var r = accumulator();
+* // returns null
+*
+* r = accumulator( 2.0, 1.0 );
+* // returns 0.0
+*
+* r = accumulator( -2.0, NaN );
+* // returns 0.0
+*
+* r = accumulator( -5.0, 3.14 );
+* // returns ~-1.0
+*
+* r = accumulator( NaN, 2.71 );
+* // returns ~-1.0
+*
+* r = accumulator( 3.0, -1.0 );
+* // returns ~-0.925
+*
+* r = accumulator( 5.0, -9.5 );
+* // returns ~-0.863
+*
+* r = accumulator();
+* // returns ~-0.863
+*/
+
+// MODULES //
+
+var main = require( './main.js' );
+
+
+// EXPORTS //
+
+module.exports = main;
diff --git a/lib/node_modules/@stdlib/stats/incr/nanmpcorr/lib/main.js b/lib/node_modules/@stdlib/stats/incr/nanmpcorr/lib/main.js
new file mode 100644
index 000000000000..4ab8e1476d44
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/incr/nanmpcorr/lib/main.js
@@ -0,0 +1,98 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 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 isNumber = require( '@stdlib/assert/is-number' ).isPrimitive;
+var incrmpcorr = require( '@stdlib/stats/incr/mpcorr' );
+var isnan = require( '@stdlib/assert/is-nan' );
+
+
+// MAIN //
+
+/**
+* Returns an accumulator function which incrementally computes a moving sample Pearson product-moment correlation coefficient, ignoring `NaN` values.
+*
+* @param {PositiveInteger} W - window size
+* @param {number} [meanx] - mean value
+* @param {number} [meany] - mean value
+* @throws {TypeError} first argument must be a positive integer
+* @throws {TypeError} second argument must be a number
+* @throws {TypeError} third argument must be a number
+* @returns {Function} accumulator function
+*
+* @example
+* var accumulator = incrnanmpcorr( 3 );
+*
+* var r = accumulator();
+* // returns null
+*
+* r = accumulator( 2.0, 1.0 );
+* // returns 0.0
+*
+* r = accumulator( -2.0, NaN );
+* // returns 0.0
+*
+* r = accumulator( -5.0, 3.14 );
+* // returns ~-1.0
+*
+* r = accumulator( NaN, 2.71 );
+* // returns ~-1.0
+*
+* r = accumulator( 3.0, -1.0 );
+* // returns ~-0.925
+*
+* r = accumulator( 5.0, -9.5 );
+* // returns ~-0.863
+*
+* r = accumulator();
+* // returns ~-0.863
+*
+* @example
+* var accumulator = incrnanmpcorr( 3, -2.0, 10.0 );
+*/
+function incrnanmpcorr( W, meanx, meany ) {
+ var mpcorr;
+ if ( arguments.length > 1 ) {
+ mpcorr = incrmpcorr( W, meanx, meany );
+ } else {
+ mpcorr = incrmpcorr( W );
+ }
+ return accumulator;
+ /**
+ * If provided a value, the accumulator function returns an updated sample correlation coefficient. If not provided a value, the accumulator function returns the current sample correlation coefficient.
+ *
+ * @private
+ * @param {number} [x] - input value
+ * @param {number} [y] - input value
+ * @returns {(number|null)} sample correlation coefficient or null
+ */
+ function accumulator( x, y ) {
+ if ( arguments.length === 0 || !isNumber( x ) || !isNumber( y ) || isnan( x ) || isnan( y ) ) {
+ return mpcorr();
+ }
+ return mpcorr( x, y );
+ }
+}
+
+
+// EXPORTS //
+
+module.exports = incrnanmpcorr;
diff --git a/lib/node_modules/@stdlib/stats/incr/nanmpcorr/package.json b/lib/node_modules/@stdlib/stats/incr/nanmpcorr/package.json
new file mode 100644
index 000000000000..e2045b5b4403
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/incr/nanmpcorr/package.json
@@ -0,0 +1,79 @@
+{
+ "name": "@stdlib/stats/incr/nanmpcorr",
+ "version": "0.0.0",
+ "description": "Compute a moving sample Pearson product-moment correlation coefficient incrementally, ignoring `NaN` value",
+ "license": "Apache-2.0",
+ "author": {
+ "name": "The Stdlib Authors",
+ "url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
+ },
+ "contributors": [
+ {
+ "name": "The Stdlib Authors",
+ "url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
+ }
+ ],
+ "main": "./lib",
+ "directories": {
+ "benchmark": "./benchmark",
+ "doc": "./docs",
+ "example": "./examples",
+ "lib": "./lib",
+ "test": "./test"
+ },
+ "types": "./docs/types",
+ "scripts": {},
+ "homepage": "https://github.com/stdlib-js/stdlib",
+ "repository": {
+ "type": "git",
+ "url": "git://github.com/stdlib-js/stdlib.git"
+ },
+ "bugs": {
+ "url": "https://github.com/stdlib-js/stdlib/issues"
+ },
+ "dependencies": {},
+ "devDependencies": {},
+ "engines": {
+ "node": ">=0.10.0",
+ "npm": ">2.7.0"
+ },
+ "os": [
+ "aix",
+ "darwin",
+ "freebsd",
+ "linux",
+ "macos",
+ "openbsd",
+ "sunos",
+ "win32",
+ "windows"
+ ],
+ "keywords": [
+ "stdlib",
+ "stdmath",
+ "statistics",
+ "stats",
+ "mathematics",
+ "math",
+ "covariance",
+ "sample covariance",
+ "variance",
+ "unbiased",
+ "var",
+ "correlation",
+ "corr",
+ "pcorr",
+ "pearson",
+ "product-moment",
+ "bivariate",
+ "incremental",
+ "accumulator",
+ "moving covariance",
+ "moving correlation",
+ "sliding window",
+ "sliding",
+ "window",
+ "moving",
+ "rolling"
+ ]
+}
diff --git a/lib/node_modules/@stdlib/stats/incr/nanmpcorr/test/test.js b/lib/node_modules/@stdlib/stats/incr/nanmpcorr/test/test.js
new file mode 100644
index 000000000000..57baff12d2ce
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/incr/nanmpcorr/test/test.js
@@ -0,0 +1,639 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 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 randu = require( '@stdlib/random/base/randu' );
+var abs = require( '@stdlib/math/base/special/abs' );
+var pow = require( '@stdlib/math/base/special/pow' );
+var sqrt = require( '@stdlib/math/base/special/sqrt' );
+var isnan = require( '@stdlib/math/base/assert/is-nan' );
+var EPS = require( '@stdlib/constants/float64/eps' );
+var incrnanmpcorr = require( './../lib' );
+
+
+// FUNCTIONS //
+
+/**
+* Computes sample means using Welford's algorithm.
+*
+* @private
+* @param {Array} out - output array
+* @param {ArrayArray} arr - input array
+* @returns {Array} output array
+*/
+function mean( out, arr ) {
+ var delta;
+ var mx;
+ var my;
+ var N;
+ var i;
+
+ mx = 0.0;
+ my = 0.0;
+
+ N = 0;
+ for ( i = 0; i < arr.length; i++ ) {
+ N += 1;
+ delta = arr[i][0] - mx;
+ mx += delta / N;
+ delta = arr[i][1] - my;
+ my += delta / N;
+ }
+ out[ 0 ] = mx;
+ out[ 1 ] = my;
+ return out;
+}
+
+/**
+* Computes standard deviations.
+*
+* @private
+* @param {Array} out - output array
+* @param {ArrayArray} arr - input array
+* @param {number} mx - `x` mean
+* @param {number} my - `y` mean
+* @param {boolean} bool - boolean indicating whether to compute a biased standard deviation
+* @returns {Array} output array
+*/
+function stdev( out, arr, mx, my, bool ) {
+ var delta;
+ var M2x;
+ var M2y;
+ var N;
+ var i;
+
+ M2x = 0.0;
+ M2y = 0.0;
+
+ N = 0;
+ for ( i = 0; i < arr.length; i++ ) {
+ N += 1;
+ delta = arr[i][0] - mx;
+ M2x += delta * delta;
+ delta = arr[i][1] - my;
+ M2y += delta * delta;
+ }
+ if ( bool ) {
+ out[ 0 ] = sqrt( M2x / N );
+ out[ 1 ] = sqrt( M2y / N );
+ return out;
+ }
+ if ( N < 2 ) {
+ out[ 0 ] = 0.0;
+ out[ 1 ] = 0.0;
+ return out;
+ }
+ out[ 0 ] = sqrt( M2x / (N-1) );
+ out[ 1 ] = sqrt( M2y / (N-1) );
+ return out;
+}
+
+/**
+* Computes the covariance using textbook formula.
+*
+* @private
+* @param {ArrayArray} arr - input array
+* @param {number} mx - `x` mean
+* @param {number} my - `y` mean
+* @param {boolean} bool - boolean indicating whether to compute the population covariance
+* @returns {number} covariance
+*/
+function covariance( arr, mx, my, bool ) {
+ var N;
+ var C;
+ var i;
+
+ N = arr.length;
+ C = 0.0;
+ for ( i = 0; i < N; i++ ) {
+ C += ( arr[i][0]-mx ) * ( arr[i][1]-my );
+ }
+ if ( bool ) {
+ return C / N;
+ }
+ if ( N === 1 ) {
+ return 0.0;
+ }
+ return C / (N-1);
+}
+
+/**
+* Computes the sample Pearson product-moment correlation coefficient using textbook formula.
+*
+* @private
+* @param {ArrayArray} arr - input array
+* @param {number} mx - `x` mean
+* @param {number} my - `y` mean
+* @param {boolean} bool - boolean indicating whether to compute the population correlation coefficient
+* @returns {number} correlation coefficient
+*/
+function pcorr( arr, mx, my, bool ) {
+ var cov;
+ var sd;
+ if ( bool === false && arr.length < 2 ) {
+ return 0.0;
+ }
+ sd = stdev( [ 0.0, 0.0 ], arr, mx, my, bool );
+ cov = covariance( arr, mx, my, bool );
+ return cov / ( sd[0]*sd[1] );
+}
+
+/**
+* Generates a set of sample datasets.
+*
+* @private
+* @param {PositiveInteger} N - number of datasets
+* @param {PositiveInteger} M - dataset length
+* @param {PositiveInteger} [seed] - PRNG seed
+* @returns {ArrayArray} sample datasets
+*/
+function datasets( N, M, seed ) {
+ var data;
+ var rand;
+ var tmp;
+ var i;
+ var j;
+ var x;
+ var y;
+
+ rand = randu.factory({
+ 'seed': seed || ( randu()*pow( 2.0, 31 ) )|0
+ });
+
+ // Generate datasets consisting of (x,y) pairs of varying value ranges...
+ data = [];
+ for ( i = 0; i < N; i++ ) {
+ tmp = [];
+ for ( j = 0; j < M; j++ ) {
+ x = ( rand() < 0.1 ) ? NaN : rand() * pow( 10.0, i );
+ y = ( rand() < 0.1 ) ? NaN : rand() * pow( 10.0, i );
+ tmp.push( [ x, y ] );
+ }
+ data.push( tmp );
+ }
+ return data;
+}
+
+
+// TESTS //
+
+tape( 'main export is a function', function test( t ) {
+ t.ok( true, __filename );
+ t.strictEqual( typeof incrnanmpcorr, 'function', 'main export is a function' );
+ t.end();
+});
+
+tape( 'the function throws an error if not provided a positive integer for the window size', function test( t ) {
+ var values;
+ var i;
+
+ values = [
+ '5',
+ -5.0,
+ 0.0,
+ 3.14,
+ true,
+ null,
+ void 0,
+ NaN,
+ [],
+ {},
+ function noop() {}
+ ];
+
+ for ( i = 0; i < values.length; i++ ) {
+ t.throws( badValue( values[i] ), TypeError, 'throws an error when provided '+values[i] );
+ }
+ t.end();
+
+ function badValue( value ) {
+ return function badValue() {
+ incrnanmpcorr( value );
+ };
+ }
+});
+
+tape( 'the function throws an error if not provided a positive integer for the window size (known means)', function test( t ) {
+ var values;
+ var i;
+
+ values = [
+ '5',
+ -5.0,
+ 0.0,
+ 3.14,
+ true,
+ null,
+ void 0,
+ NaN,
+ [],
+ {},
+ function noop() {}
+ ];
+
+ for ( i = 0; i < values.length; i++ ) {
+ t.throws( badValue( values[i] ), TypeError, 'throws an error when provided '+values[i] );
+ }
+ t.end();
+
+ function badValue( value ) {
+ return function badValue() {
+ incrnanmpcorr( value, 3.0, 3.14 );
+ };
+ }
+});
+
+tape( 'the function throws an error if not provided a number as the mean value', function test( t ) {
+ var values;
+ var i;
+
+ values = [
+ '5',
+ true,
+ false,
+ null,
+ void 0,
+ [],
+ {},
+ function noop() {}
+ ];
+
+ for ( i = 0; i < values.length; i++ ) {
+ t.throws( badValue( values[i] ), TypeError, 'throws an error when provided '+values[i] );
+ }
+ t.end();
+
+ function badValue( value ) {
+ return function badValue() {
+ incrnanmpcorr( 3, value, 3.14 );
+ };
+ }
+});
+
+tape( 'the function throws an error if not provided a number as the mean value', function test( t ) {
+ var values;
+ var i;
+
+ values = [
+ '5',
+ true,
+ false,
+ null,
+ void 0,
+ [],
+ {},
+ function noop() {}
+ ];
+
+ for ( i = 0; i < values.length; i++ ) {
+ t.throws( badValue( values[i] ), TypeError, 'throws an error when provided '+values[i] );
+ }
+ t.end();
+
+ function badValue( value ) {
+ return function badValue() {
+ incrnanmpcorr( 3, 3.14, value );
+ };
+ }
+});
+
+tape( 'the function returns an accumulator function', function test( t ) {
+ t.equal( typeof incrnanmpcorr( 3 ), 'function', 'returns a function' );
+ t.end();
+});
+
+tape( 'the function returns an accumulator function (known means)', function test( t ) {
+ t.equal( typeof incrnanmpcorr( 3, 3.0, 3.14 ), 'function', 'returns a function' );
+ t.end();
+});
+
+tape( 'the accumulator function computes a moving sample Pearson product-moment correlation coefficient incrementally and skip NaN updates', function test( t ) {
+ var validData;
+ var expected;
+ var actual;
+ var delta;
+ var means;
+ var prev;
+ var data;
+ var acc;
+ var tol;
+ var d;
+ var N;
+ var M;
+ var W;
+ var i;
+ var j;
+ var x;
+ var y;
+
+ N = 10;
+ M = 100;
+ data = datasets( N, M, randu.seed );
+
+ // Define the window size:
+ W = 10;
+
+ // For each dataset, compute the actual and expected correlation coefficients...
+ for ( i = 0; i < N; i++ ) {
+ d = data[ i ];
+ acc = incrnanmpcorr( W );
+ validData = [];
+ prev = null;
+ for ( j = 0; j < M; j++ ) {
+ x = d[ j ][ 0 ];
+ y = d[ j ][ 1 ];
+ if ( !isnan( x ) && !isnan( y ) ) {
+ validData.push( [ x, y ] );
+ if ( validData.length > W ) {
+ validData.shift();
+ }
+ }
+ actual = acc( x, y );
+ if ( isnan( x ) || isnan( y ) ) {
+ expected = prev;
+ } else {
+ means = mean( [ 0.0, 0.0 ], validData );
+ expected = pcorr( validData, means[0], means[1], false );
+ prev = expected;
+ }
+ if ( isnan( expected ) ) {
+ t.equal( isnan( actual ), true, 'returns NaN for window: '+i );
+ } else if ( actual === expected ) {
+ t.equal( actual, expected, 'returns expected value. dataset: '+i+'. window: '+j+'.' );
+ } else {
+ delta = abs( actual - expected );
+ tol = 5.0e5 * EPS * abs( expected );
+ t.equal( delta < tol, true, 'dataset: '+i+'. window: '+j+'. expected: '+expected+'. actual: '+actual+'. tol: '+tol+'. delta: '+delta+'.' );
+ }
+ }
+ }
+ t.end();
+});
+
+tape( 'the accumulator function computes a moving sample Pearson product-moment correlation coefficient incrementally (known means) and skip NaN updates', function test( t ) {
+ var validData;
+ var expected;
+ var actual;
+ var means;
+ var delta;
+ var data;
+ var prev;
+ var acc;
+ var tol;
+ var d;
+ var N;
+ var M;
+ var W;
+ var i;
+ var j;
+ var x;
+ var y;
+
+ N = 10;
+ M = 100;
+ data = datasets( N, M, randu.seed );
+ validData = [];
+ for ( i = 0; i < N; i++ ) {
+ d = data[ i ];
+ for ( j = 0; j < M; j++ ) {
+ x = d[ j ][ 0 ];
+ y = d[ j ][ 1 ];
+ if ( !isnan( x ) && !isnan( y ) ) {
+ validData.push( [ x, y ] );
+ }
+ }
+ }
+ means = mean([0.0, 0.0], validData);
+ W = 10;
+
+ // For each dataset, compute the actual and expected correlation coefficients...
+ for ( i = 0; i < N; i++ ) {
+ d = data[ i ];
+ means = mean( [ 0.0, 0.0 ], d );
+ acc = incrnanmpcorr( W, means[ 0 ], means[ 1 ] );
+ validData = [];
+ prev = null;
+ for ( j = 0; j < M; j++ ) {
+ x = d[ j ][ 0 ];
+ y = d[ j ][ 1 ];
+ if ( !isnan( x ) && !isnan( y ) ) {
+ validData.push( [ x, y ] );
+ if ( validData.length > W ) {
+ validData.shift();
+ }
+ }
+ actual = acc( x, y );
+ if ( isnan( x ) || isnan( y ) ) {
+ expected = prev;
+ } else {
+ expected = pcorr(validData, means[0], means[1], true);
+ prev = expected;
+ }
+ if ( isnan( expected ) ) {
+ t.equal( isnan( actual ), true, 'dataset: '+i+', window: '+j+' returns NaN as expected' );
+ } else if ( actual === expected ) {
+ t.equal( actual, expected, 'returns expected value. dataset: '+i+'. window: '+j+'.' );
+ } else {
+ delta = abs( actual - expected );
+ tol = 5.0e5 * EPS * abs( expected );
+ t.equal( delta < tol, true, 'dataset: '+i+'. window: '+j+'. expected: '+expected+'. actual: '+actual+'. tol: '+tol+'. delta: '+delta+'.' );
+ }
+ }
+ }
+ t.end();
+});
+
+tape( 'if not provided an input value, the accumulator function returns the current sample correlation coefficient (unknown means) and skips NaN updates', function test( t ) {
+ var validData;
+ var expected;
+ var actual;
+ var means;
+ var delta;
+ var prev;
+ var data;
+ var tol;
+ var acc;
+ var W;
+ var N;
+ var i;
+ var x;
+ var y;
+
+ data = [
+ [ 2.0, 1.0 ],
+ [ NaN, 3.14 ],
+ [ 3.0, -1.0 ],
+ [ 5.0, -9.5 ]
+ ];
+ N = data.length;
+
+ // Window size:
+ W = 3;
+ acc = incrnanmpcorr( W );
+ validData = [];
+ prev = null;
+
+ for ( i = 0; i < N; i++ ) {
+ x = data[ i ][ 0 ];
+ y = data[ i ][ 1 ];
+ if ( !isnan( x ) && !isnan( y ) ) {
+ validData.push( [ x, y ] );
+ if ( validData.length > W ) {
+ validData.shift();
+ }
+ }
+ actual = acc( x, y );
+ if ( isnan( x ) || isnan( y ) ) {
+ expected = prev;
+ } else {
+ means = mean( [ 0.0, 0.0 ], validData );
+ expected = pcorr( validData, means[ 0 ], means[ 1 ], false );
+ prev = expected;
+ }
+ if ( actual === expected ) {
+ t.equal( actual, expected, 'returns expected value. window: '+i+'.' );
+ } else {
+ delta = abs( actual - expected );
+ tol = 2.0 * EPS * abs( expected );
+ t.equal( delta < tol, true, 'window: '+i+'. expected: '+expected+'. actual: '+actual+'. tol: '+tol+'. delta: '+delta+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'if not provided an input value, the accumulator function returns the current sample correlation coefficient (known means) and skips NaN updates', function test( t ) {
+ var validData;
+ var expected;
+ var actual;
+ var means;
+ var delta;
+ var prev;
+ var data;
+ var tol;
+ var acc;
+ var W;
+ var N;
+ var i;
+ var x;
+ var y;
+
+ data = [
+ [ 2.0, 1.0 ],
+ [ NaN, 3.14 ],
+ [ 3.0, -1.0 ],
+ [ 5.0, -9.5 ]
+ ];
+ N = data.length;
+ validData = [];
+ for ( i = 0; i < N; i++ ) {
+ x = data[ i ][ 0 ];
+ y = data[ i ][ 1 ];
+ if ( !isnan( x ) && !isnan( y ) ) {
+ validData.push( [ x, y ] );
+ }
+ }
+ means = mean( [ 0.0, 0.0 ], validData );
+
+ // Window size:
+ W = 3;
+ acc = incrnanmpcorr( W, means[ 0 ], means[ 1 ] );
+ validData = [];
+ prev = null;
+
+ for ( i = 0; i < N; i++ ) {
+ x = data[ i ][ 0 ];
+ y = data[ i ][ 1 ];
+ if ( !isnan( x ) && !isnan( y ) ) {
+ validData.push( [ x, y ] );
+ if ( validData.length > W ) {
+ validData.shift();
+ }
+ }
+ actual = acc( x, y );
+ if ( isnan( x ) || isnan( y ) ) {
+ expected = prev;
+ } else {
+ expected = pcorr( validData, means[ 0 ], means[ 1 ], true );
+ prev = expected;
+ }
+ if ( actual === expected ) {
+ t.equal( actual, expected, 'returns expected value. window: '+i+'.' );
+ } else {
+ delta = abs( actual - expected );
+ tol = 2.0 * EPS * abs( expected );
+ t.equal( delta < tol, true, 'window: '+i+'. expected: '+expected+'. actual: '+actual+'. tol: '+tol+'. delta: '+delta+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'if data has yet to be provided, the accumulator function returns `null`', function test( t ) {
+ var acc = incrnanmpcorr( 3 );
+ t.equal( acc(), null, 'returns null' );
+ t.end();
+});
+
+tape( 'if data has yet to be provided, the accumulator function returns `null` (known means)', function test( t ) {
+ var acc = incrnanmpcorr( 3, 3.0, 3.14 );
+ t.equal( acc(), null, 'returns null' );
+ t.end();
+});
+
+tape( 'if only one datum has been provided and the means are unknown, the accumulator function returns `0`', function test( t ) {
+ var acc = incrnanmpcorr( 3 );
+ acc( 2.0, 3.14 );
+ t.equal( acc(), 0.0, 'returns 0' );
+ t.end();
+});
+
+tape( 'if only one datum has been provided and the means are known, the accumulator function may not return `0`', function test( t ) {
+ var acc = incrnanmpcorr( 3, 30.0, -100.0 );
+ acc( 2.0, 1.0 );
+ t.notEqual( acc(), 0.0, 'does not return 0' );
+ t.end();
+});
+
+tape( 'if the window size is `1` and the means are unknown, the accumulator function always returns `0`', function test( t ) {
+ var acc;
+ var r;
+ var i;
+
+ acc = incrnanmpcorr( 1 );
+ for ( i = 0; i < 100; i++ ) {
+ r = acc( randu()*100.0, randu()*100.0 );
+ t.equal( r, 0.0, 'returns 0' );
+ }
+ t.end();
+});
+
+tape( 'if the window size is `1` and the means are known, the accumulator function may not always return `0`', function test( t ) {
+ var acc;
+ var r;
+ var i;
+
+ acc = incrnanmpcorr( 1, 500.0, -500.0 ); // means are outside the range of simulated values so the correlation should never be zero
+ for ( i = 0; i < 100; i++ ) {
+ r = acc( randu()*100.0, randu()*100.0 );
+ t.notEqual( r, 0.0, 'does not return 0' );
+ }
+ t.end();
+});