Skip to content

Commit b046648

Browse files
authored
chore: remove unused header in stats/base/dnanmeanwd
PR-URL: #4497 Reviewed-by: Athan Reines <[email protected]>
1 parent 29f0cf3 commit b046648

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ The function has the following parameters:
7070
- **x**: input [`Float64Array`][@stdlib/array/float64].
7171
- **strideX**: index increment for `x`.
7272

73-
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`,
73+
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`,
7474

7575
```javascript
7676
var Float64Array = require( '@stdlib/array/float64' );

lib/node_modules/@stdlib/stats/base/dnanmeanwd/src/main.c

-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
#include "stdlib/stats/base/dnanmeanwd.h"
2020
#include "stdlib/blas/base/shared.h"
2121
#include "stdlib/strided/base/stride2offset.h"
22-
#include <stdint.h>
2322

2423
/**
2524
* Computes the arithmetic mean of a double-precision floating-point strided array, using Welford's algorithm and ignoring `NaN` values.

0 commit comments

Comments
 (0)