Skip to content

Commit f8f7268

Browse files
chore: markdown clean up
1 parent d57726d commit f8f7268

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ Computes the arithmetic mean of a single-precision floating-point strided array
179179
const float x[] = { 1.0f, 2.0f, 3.0f, 4.0f, 5.0f, 6.0f, 7.0f, 8.0f };
180180

181181
double v = stdlib_strided_dsmeanwd( 4, x, 2 );
182-
// returns 1.25
182+
// returns 4.0
183183
```
184184
185185
The function accepts the following arguments:
@@ -200,7 +200,7 @@ Computes the arithmetic mean of a single-precision floating-point strided array
200200
const float x[] = { 1.0f, 2.0f, 3.0f, 4.0f, 5.0f, 6.0f, 7.0f, 8.0f };
201201

202202
double v = stdlib_strided_dsmeanwd_ndarray( 4, x, 2, 0 );
203-
// returns 1.25
203+
// returns 4.0
204204
```
205205
206206
The function accepts the following arguments:

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
#include "stdlib/stats/base/dsmeanwd.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 single-precision floating-point strided array using Welford's algorithm with extended accumulation and returning an extended precision result.

0 commit comments

Comments
 (0)