Skip to content

Commit dbe831f

Browse files
chore: update retrun values
1 parent 57f9dfc commit dbe831f

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/stats/base/dnanmeanors/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 double-precision floating-point strided array,
190190
const double x[] = { 1.0, 2.0, 0.0/0.0, 3.0, 0.0/0.0, 4.0, 5.0, 6.0, 0.0/0.0, 7.0, 8.0, 0.0/0.0 };
191191

192192
double v = stdlib_strided_dnanmeanors( 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 double-precision floating-point strided array,
211211
const double x[] = { 1.0, 2.0, 0.0/0.0, 3.0, 0.0/0.0, 4.0, 5.0, 6.0, 0.0/0.0, 7.0, 8.0, 0.0/0.0 };
212212

213213
double v = stdlib_strided_dnanmeanors( 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)