Skip to content

Commit b179620

Browse files
authored
Apply suggestions from code review
Signed-off-by: Athan <[email protected]>
1 parent 27c2f69 commit b179620

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/stats/base/sstdevwd

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ Computes the [standard deviation][standard-deviation] of a single-precision floa
243243
const float x[] = { 1.0f, 2.0f, 3.0f, 4.0f, 5.0f, 6.0f, 7.0f, 8.0f };
244244

245245
float v = stdlib_strided_sstdevwd( 4, 1.0f, x, 2 );
246-
// returns 2.581989f
246+
// returns ~2.58f
247247
```
248248
249249
The function accepts the following arguments:
@@ -265,7 +265,7 @@ Computes the [standard deviation][standard-deviation] of a single-precision floa
265265
const float x[] = { 1.0f, 2.0f, 3.0f, 4.0f, 5.0f, 6.0f, 7.0f, 8.0f };
266266

267267
float v = stdlib_strided_sstdevwd_ndarray( 4, 1.0f, x, 2, 0 );
268-
// returns 2.581989f
268+
// returns ~2.58f
269269
```
270270
271271
The function accepts the following arguments:

0 commit comments

Comments
 (0)