Skip to content

Commit 0409af2

Browse files
committed
docs: fix missing dtypes
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: passed - task: lint_package_json status: na - task: lint_repl_help status: skipped - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 3b1438a commit 0409af2

File tree

1 file changed

+6
-6
lines changed
  • lib/node_modules/@stdlib/stats/strided/dztest

1 file changed

+6
-6
lines changed

lib/node_modules/@stdlib/stats/strided/dztest/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -234,9 +234,9 @@ The function accepts the following arguments:
234234
235235
- **N**: `[in] CBLAS_INT` number of indexed elements.
236236
- **alternative**: `[in] enum STDLIB_STATS_ZTEST_ALTERNATIVE` [alternative hypothesis][@stdlib/stats/base/ztest/alternatives].
237-
- **alpha**: significance level.
238-
- **mu**: value of the mean under the null hypothesis.
239-
- **sigma** known standard deviation.
237+
- **alpha**: `[in] double` significance level.
238+
- **mu**: `[in] double` value of the mean under the null hypothesis.
239+
- **sigma** `[in] double` known standard deviation.
240240
- **X**: `[in] double*` input array.
241241
- **strideX**: `[in] CBLAS_INT` stride length for `X`.
242242
- **results**: `[out] struct stdlib_stats_ztest_one_sample_results_float64*` output [results object][@stdlib/stats/base/ztest/one-sample/results/float64].
@@ -273,9 +273,9 @@ The function accepts the following arguments:
273273
274274
- **N**: `[in] CBLAS_INT` number of indexed elements.
275275
- **alternative**: `[in] enum STDLIB_STATS_ZTEST_ALTERNATIVE` [alternative hypothesis][@stdlib/stats/base/ztest/alternatives].
276-
- **alpha**: significance level.
277-
- **mu**: value of the mean under the null hypothesis.
278-
- **sigma** known standard deviation.
276+
- **alpha**: `[in] double` significance level.
277+
- **mu**: `[in] double` value of the mean under the null hypothesis.
278+
- **sigma** `[in] double` known standard deviation.
279279
- **X**: `[in] double*` input array.
280280
- **strideX**: `[in] CBLAS_INT` stride length for `X`.
281281
- **offsetX**: `[in] CBLAS_INT` starting index for `X`.

0 commit comments

Comments
 (0)