Skip to content

Commit 8805a58

Browse files
authored
docs: update README.md
1 parent a6f9813 commit 8805a58

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/stats/base/dvariancewd

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ The function has the following parameters:
116116
- **N**: number of indexed elements.
117117
- **correction**: degrees of freedom adjustment. Setting this parameter to a value other than `0` has the effect of adjusting the divisor during the calculation of the [variance][variance] according to `N-c` where `c` corresponds to the provided degrees of freedom adjustment. When computing the [variance][variance] of a population, setting this parameter to `0` is the standard choice (i.e., the provided array contains data constituting an entire population). When computing the unbiased sample [variance][variance], setting this parameter to `1` is the standard choice (i.e., the provided array contains data sampled from a larger population; this is commonly referred to as Bessel's correction).
118118
- **x**: input [`Float64Array`][@stdlib/array/float64].
119-
- **strideX**: index increment for `x`.
119+
- **strideX**: stride length for `x`.
120120

121121
The `N` and stride parameters determine which elements in the strided array are accessed at runtime. For example, to compute the [variance][variance] of every other element in `x`,
122122

0 commit comments

Comments
 (0)