Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/stats/base/dnanstdevwd/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ Computes the [standard deviation][standard-deviation] of a double-precision floa
const double x[] = { 1.0, -2.0, 0.0/0.0, 2.0 };

double v = stdlib_strided_dnanstdevwd( 4, 1.0, x, 1 );
// returns ~4.3333
// returns ~2.0817.
```

The function accepts the following arguments:
Expand All @@ -276,7 +276,7 @@ Computes the [standard deviation][standard-deviation] of a double-precision floa
const double x[] = { 1.0, -2.0, 0.0/0.0, 2.0 };

double v = stdlib_strided_dnanstdevwd_ndarray( 4, 1.0, x, 1, 0 );
// returns ~4.3333
// returns ~2.0817.
```

The function accepts the following arguments:
Expand Down