@@ -232,9 +232,9 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">stats/
232232* @param {number} alpha - significance level
233233* @param {number} diff - difference in means under the null hypothesis
234234* @param {PositiveNumber} sigmax - known standard deviation of `x`
235- * @param {PositiveNumber} sigmay - known standard deviation of `y`
236235* @param {Collection} x - input array
237236* @param {integer} strideX - stride length for `x`
237+ * @param {PositiveNumber} sigmay - known standard deviation of `y`
238238* @param {Collection} y - input array
239239* @param {integer} strideY - stride length for `y`
240240* @param {Object} out - output results object
@@ -247,14 +247,14 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">stats/
247247* var y = [ 3.0, 3.0, 5.0, 7.0, 7.0 ];
248248*
249249* var results = new Results();
250- * var out = ztest2( x.length, y.length, 'two-sided', 0.05, 0.0, 1.0, 2.0, x, 1, y, 1, results );
250+ * var out = ztest2( x.length, y.length, 'two-sided', 0.05, 0.0, 1.0, x, 1, 2.0 , y, 1, results );
251251* // returns {...}
252252*
253253* var bool = ( out === results );
254254* // returns true
255255*/
256- function ztest2( NX, NY, alternative, alpha, diff, sigmax, sigmay, x, strideX, y, strideY, out ) { // eslint-disable-line max-len, max-params
257- return ndarray( NX, NY, alternative, alpha, diff, sigmax, sigmay, x, strideX, stride2offset( NX, strideX ), y, strideY, stride2offset( NY, strideY ), out ); // eslint-disable-line max-len
256+ function ztest2( NX, NY, alternative, alpha, diff, sigmax, x, strideX, sigmay , y, strideY, out ) { // eslint-disable-line max-len, max-params
257+ return ndarray( NX, NY, alternative, alpha, diff, sigmax, x, strideX, stride2offset( NX, strideX ), sigmay , y, strideY, stride2offset( NY, strideY ), out ); // eslint-disable-line max-len
258258}
259259
260260
@@ -268,7 +268,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">stats/
268268 < div class ='footer quiet pad2 space-top1 center small '>
269269 Code coverage generated by
270270 < a href ="https://istanbul.js.org/ " target ="_blank " rel ="noopener noreferrer "> istanbul</ a >
271- at 2025-07-05T14:59:19.606Z
271+ at 2025-07-10T18:43:10.456Z
272272 </ div >
273273 < script src ="../../../../prettify.js "> </ script >
274274 < script >
0 commit comments