Skip to content

Commit dce8133

Browse files
fix: CI error
1 parent 8d4f3d6 commit dce8133

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

lib/node_modules/@stdlib/stats/base/dnanmeanwd/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ console.log( v );
195195

196196
#### stdlib_strided_dnanmeanwd( N, \*X, strideX )
197197

198-
Computes the [mean][mean] of a double-precision floating-point strided array `x`, ignoring `NaN` values.
198+
Computes the mean value of a double-precision floating-point strided array `x`, ignoring `NaN` values.
199199

200200
```c
201201
const double x[] = { 1.0, 0.0/0.0, 3.0, -4.0 };
@@ -216,7 +216,7 @@ double stdlib_strided_dnanmeanwd( const CBLAS_INT N, const double *X, const CBLA
216216

217217
#### stdlib_strided_dnanmeanwd_ndarray( N, \*X, strideX, offsetX )
218218

219-
Computes the [mean][mean] of a double-precision floating-point strided array, ignoring `NaN` values and using alternative indexing semantics.
219+
Computes the mean value of a double-precision floating-point strided array, ignoring `NaN` values and using alternative indexing semantics.
220220

221221
```c
222222
const double x[] = { 1.0, 0.0/0.0, 3.0, -4.0 };

lib/node_modules/@stdlib/stats/base/dnanmeanwd/docs/repl.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@
3838

3939
// Using `N` and stride parameters:
4040
> x = new {{alias:@stdlib/array/float64}}( [ -2.0, 1.0, 1.0, -5.0, 2.0, -1.0, NaN ] );
41-
> {{alias}}( 3, x, strideX )
41+
> {{alias}}( 3, x, 2 )
4242
~0.3333
4343

4444
// Using view offsets:
4545
> var x0 = new {{alias:@stdlib/array/float64}}( [ 1.0, -2.0, 3.0, 2.0, 5.0, -1.0, NaN ] );
4646
> var x1 = new {{alias:@stdlib/array/float64}}( x0.buffer, x0.BYTES_PER_ELEMENT*1 );
47-
> {{alias}}( 3, x1, strideX )
47+
> {{alias}}( 3, x1, 2 )
4848
~-0.3333
4949

5050

0 commit comments

Comments
 (0)