@@ -38,7 +38,7 @@ interface Routine {
38
38
* @param N - number of indexed elements
39
39
* @param correction - degrees of freedom adjustment
40
40
* @param x - input array
41
- * @param stride - stride length
41
+ * @param strideX - stride length
42
42
* @returns variance
43
43
*
44
44
* @example
@@ -47,16 +47,16 @@ interface Routine {
47
47
* var v = variancepn( x.length, 1, x, 1, 0 );
48
48
* // returns ~4.3333
49
49
*/
50
- ( N : number , correction : number , x : NumericArray | InputArray , stride : number ) : number ;
50
+ ( N : number , correction : number , x : NumericArray | InputArray , strideX : number ) : number ;
51
51
52
52
/**
53
53
* Computes the variance of a strided array using a two-pass algorithm and alternative indexing semantics.
54
54
*
55
55
* @param N - number of indexed elements
56
56
* @param correction - degrees of freedom adjustment
57
57
* @param x - input array
58
- * @param stride - stride length
59
- * @param offset - starting index
58
+ * @param strideX - stride length
59
+ * @param offsetX - starting index
60
60
* @returns variance
61
61
*
62
62
* @example
@@ -65,7 +65,7 @@ interface Routine {
65
65
* var v = variancepn.ndarray( x.length, 1, x, 1, 0 );
66
66
* // returns ~4.3333
67
67
*/
68
- ndarray ( N : number , correction : number , x : InputArray , stride : number , offset : number ) : number ;
68
+ ndarray ( N : number , correction : number , x : InputArray , strideX : number , offsetX : number ) : number ;
69
69
}
70
70
71
71
/**
@@ -74,7 +74,7 @@ interface Routine {
74
74
* @param N - number of indexed elements
75
75
* @param correction - degrees of freedom adjustment
76
76
* @param x - input array
77
- * @param stride - stride length
77
+ * @param strideX - stride length
78
78
* @returns variance
79
79
*
80
80
* @example
0 commit comments