Skip to content

Commit ad87e65

Browse files
authored
Apply suggestions from code review
Signed-off-by: Athan <[email protected]>
1 parent 7c20b96 commit ad87e65

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ The function accepts the following arguments:
269269
- **correction**: `[in] double` 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).
270270
- **X**: `[in] double*` input array.
271271
- **strideX**: `[in] CBLAS_INT` stride length for `X`.
272-
- **Out**: `[in] double*` output array.
272+
- **Out**: `[out] double*` output array.
273273
- **strideOut**: `[in] CBLAS_INT` stride length for `Out`.
274274
275275
```c
@@ -294,7 +294,7 @@ The function accepts the following arguments:
294294
- **X**: `[in] double*` input array.
295295
- **strideX**: `[in] CBLAS_INT` stride length for `X`.
296296
- **offsetX**: `[in] CBLAS_INT` starting index for `X`.
297-
- **Out**: `[in] double*` output array.
297+
- **Out**: `[out] double*` output array.
298298
- **strideOut**: `[in] CBLAS_INT` stride length for `Out`.
299299
- **offsetOut**: `[in] CBLAS_INT` starting index for `Out`.
300300

0 commit comments

Comments
 (0)