Skip to content

Commit 2135adc

Browse files
authored
docs: fix descriptions
Signed-off-by: Athan <[email protected]>
1 parent 176f600 commit 2135adc

File tree

1 file changed

+12
-12
lines changed
  • lib/node_modules/@stdlib/stats/strided/sztest2/src

1 file changed

+12
-12
lines changed

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

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@
3939
* @param alternative alternative hypothesis
4040
* @param alpha significance level
4141
* @param diff mean under the null hypothesis
42-
* @param sigmax known standard deviation
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 for `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 for `Y`
4848
* @param results output results object
4949
*/
5050
void API_SUFFIX(stdlib_strided_sztest2)( const CBLAS_INT NX, const CBLAS_INT NY, const enum STDLIB_STATS_ZTEST_ALTERNATIVE alternative, const float alpha, const float diff, const float sigmax, const float *X, const CBLAS_INT strideX, const float sigmay, const float *Y, const CBLAS_INT strideY, struct stdlib_stats_ztest_two_sample_float32_results *results ) {
@@ -56,19 +56,19 @@ void API_SUFFIX(stdlib_strided_sztest2)( const CBLAS_INT NX, const CBLAS_INT NY,
5656
/**
5757
* Computes a two-sample Z-test for two single-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
6363
* @param diff mean under the null hypothesis
64-
* @param sigmax known standard deviation of `x`
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_sztest2_ndarray)( const CBLAS_INT NX, const CBLAS_INT NY, const enum STDLIB_STATS_ZTEST_ALTERNATIVE alternative, const float alpha, const float diff, const float sigmax, const float *X, const CBLAS_INT strideX, const CBLAS_INT offsetX, const float sigmay, const float *Y, const CBLAS_INT strideY, const CBLAS_INT offsetY, struct stdlib_stats_ztest_two_sample_float32_results *results ) {

0 commit comments

Comments
 (0)