Skip to content

Commit fde3be3

Browse files
committed
chore: clean-up
--- 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: na - task: lint_package_json status: na - task: lint_repl_help status: na - 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: missing_dependencies - 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: passed - task: lint_license_headers status: passed ---
1 parent aeb0c03 commit fde3be3

File tree

2 files changed

+18
-18
lines changed
  • lib/node_modules/@stdlib/stats/strided/dztest2

2 files changed

+18
-18
lines changed

lib/node_modules/@stdlib/stats/strided/dztest2/docs/types/test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ import dztest2 = require( './index' );
122122
dztest2( x.length, y.length, 'two-sided', 0.05, 0.0, ( x: number ): number => x, x, 1, 1.0, y, 1, new Float64Results() ); // $ExpectError
123123
}
124124

125-
// The compiler throws an error if the function is provided a seventh argument which is not a an array-like object...
125+
// The compiler throws an error if the function is provided a seventh argument which is not an array-like object...
126126
{
127127
const x = new Float64Array( 10 );
128128
const y = new Float64Array( 10 );
@@ -333,7 +333,7 @@ import dztest2 = require( './index' );
333333
dztest2.ndarray( x.length, y.length, 'two-sided', 0.05, 0.0, ( x: number ): number => x, x, 1, 0, 1.0, y, 1, 0, new Float64Results() ); // $ExpectError
334334
}
335335

336-
// The compiler throws an error if the `ndarray` method is provided an seventh argument which is not an array-like object...
336+
// The compiler throws an error if the `ndarray` method is provided a seventh argument which is not an array-like object...
337337
{
338338
const x = new Float64Array( 10 );
339339
const y = new Float64Array( 10 );

lib/node_modules/@stdlib/stats/strided/dztest2/src/main.c

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -34,17 +34,17 @@
3434
/**
3535
* Computes a two-sample Z-test for two double-precision floating-point strided arrays.
3636
*
37-
* @param NX number of indexed elements
38-
* @param NY number of indexed elements
37+
* @param NX number of indexed elements in `X`
38+
* @param NY number of indexed elements in `Y`
3939
* @param alternative alternative hypothesis
4040
* @param alpha significance level
41-
* @param diff mean under the null hypothesis
42-
* @param sigmax known standard deviation
41+
* @param diff difference in means under the null hypothesis
42+
* @param sigmax known standard deviation of `X`
4343
* @param X first input array
44-
* @param strideX stride length
45-
* @param sigmay known standard deviation
44+
* @param strideX stride length of `X`
45+
* @param sigmay known standard deviation of `Y`
4646
* @param Y second input array
47-
* @param strideY stride length
47+
* @param strideY stride length of `Y`
4848
* @param results output results object
4949
*/
5050
void API_SUFFIX(stdlib_strided_dztest2)( const CBLAS_INT NX, const CBLAS_INT NY, const enum STDLIB_STATS_ZTEST_ALTERNATIVE alternative, const double alpha, const double diff, const double sigmax, const double *X, const CBLAS_INT strideX, const double sigmay, const double *Y, const CBLAS_INT strideY, struct stdlib_stats_ztest_two_sample_float64_results *results ) {
@@ -56,19 +56,19 @@ void API_SUFFIX(stdlib_strided_dztest2)( const CBLAS_INT NX, const CBLAS_INT NY,
5656
/**
5757
* Computes a two-sample Z-test for two double-precision floating-point strided arrays using alternative indexing semantics.
5858
*
59-
* @param NX number of indexed elements in `x`
60-
* @param NY number of indexed elements in `y`
59+
* @param NX number of indexed elements in `X`
60+
* @param NY number of indexed elements in `Y`
6161
* @param alternative alternative hypothesis
6262
* @param alpha significance level
63-
* @param diff mean under the null hypothesis
64-
* @param sigmax known standard deviation of `x`
63+
* @param diff difference in means under the null hypothesis
64+
* @param sigmax known standard deviation of `X`
6565
* @param X first input array
66-
* @param strideX stride length for `x`
67-
* @param offsetX starting index for `x`
68-
* @param sigmay known standard deviation of `x`
66+
* @param strideX stride length for `X`
67+
* @param offsetX starting index for `X`
68+
* @param sigmay known standard deviation of `Y`
6969
* @param Y second input array
70-
* @param strideY stride length for `y`
71-
* @param offsetY starting index for `y`
70+
* @param strideY stride length for `Y`
71+
* @param offsetY starting index for `Y`
7272
* @param results output results object
7373
*/
7474
void API_SUFFIX(stdlib_strided_dztest2_ndarray)( const CBLAS_INT NX, const CBLAS_INT NY, const enum STDLIB_STATS_ZTEST_ALTERNATIVE alternative, const double alpha, const double diff, const double sigmax, const double *X, const CBLAS_INT strideX, const CBLAS_INT offsetX, const double sigmay, const double *Y, const CBLAS_INT strideY, const CBLAS_INT offsetY, struct stdlib_stats_ztest_two_sample_float64_results *results ) {

0 commit comments

Comments
 (0)