Skip to content

Commit fbc24ef

Browse files
chore: update retrun values
1 parent b26e94f commit fbc24ef

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ Computes the arithmetic mean of a single-precision floating-point strided array,
190190
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 };
191191

192192
double v = stdlib_strided_dsnanmeanwd( 6, x, 2 );
193-
// returns 4.66
193+
// returns 4.6667
194194
```
195195
196196
The function accepts the following arguments:
@@ -211,7 +211,7 @@ Computes the arithmetic mean of a single-precision floating-point strided array,
211211
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 };
212212

213213
double v = stdlib_strided_dsnanmeanwd_ndarray( 6, x, 2, 0 );
214-
// returns 4.66
214+
// returns 4.6667
215215
```
216216
217217
The function accepts the following arguments:

0 commit comments

Comments
 (0)