diff --git a/lib/node_modules/@stdlib/stats/base/dnanmeanwd/README.md b/lib/node_modules/@stdlib/stats/base/dnanmeanwd/README.md index 2ee2d1fb9649..2646a2cbe751 100644 --- a/lib/node_modules/@stdlib/stats/base/dnanmeanwd/README.md +++ b/lib/node_modules/@stdlib/stats/base/dnanmeanwd/README.md @@ -70,7 +70,7 @@ The function has the following parameters: - **x**: input [`Float64Array`][@stdlib/array/float64]. - **strideX**: index increment for `x`. -The `N` and stride parameters determine which elements in the stride array are accessed at runtime. For example, to compute the [arithmetic mean][arithmetic-mean] of every other element in `x`, +The `N` and stride parameters determine which elements in the strided array are accessed at runtime. For example, to compute the [arithmetic mean][arithmetic-mean] of every other element in `x`, ```javascript var Float64Array = require( '@stdlib/array/float64' ); diff --git a/lib/node_modules/@stdlib/stats/base/dnanmeanwd/src/main.c b/lib/node_modules/@stdlib/stats/base/dnanmeanwd/src/main.c index a0a7c9c37e73..45806c5705d1 100644 --- a/lib/node_modules/@stdlib/stats/base/dnanmeanwd/src/main.c +++ b/lib/node_modules/@stdlib/stats/base/dnanmeanwd/src/main.c @@ -19,7 +19,6 @@ #include "stdlib/stats/base/dnanmeanwd.h" #include "stdlib/blas/base/shared.h" #include "stdlib/strided/base/stride2offset.h" -#include /** * Computes the arithmetic mean of a double-precision floating-point strided array, using Welford's algorithm and ignoring `NaN` values.