Skip to content

Commit ad376a9

Browse files
chore: update retrun values
1 parent f0df616 commit ad376a9

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

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

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

193193
double v = stdlib_strided_dsnanmeanors( 6, x, 2 );
194-
// returns 4.66
194+
// returns 4.6667
195195
```
196196
197197
The function accepts the following arguments:
@@ -212,7 +212,7 @@ Computes the arithmetic mean of a single-precision floating-point strided array,
212212
const float x[] = { 1.0f, 2.0f, 0.0f/0.0f, 3.0f, 0.0f/0.0f, 4.0f, 5.0f, 6.0f, 0.0f/0.0f, 7.0f, 8.0f, 0.0f/0.0f };
213213

214214
double v = stdlib_strided_dsnanmeanors_ndarray( 6, x, 2, 0 );
215-
// returns 4.66
215+
// returns 4.6667
216216
```
217217
218218
The function accepts the following arguments:

0 commit comments

Comments
 (0)