You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
base.strided.nanmaxBy.ndarray,"\nbase.strided.nanmaxBy.ndarray( N:integer, x:Array|TypedArray|Object, \n strideX:integer, offsetX:integer, clbk:Function[, thisArg:any] )\n Computes the maximum value of a strided array via a callback function,\n ignoring `NaN` values and using alternative indexing semantics.\n"
2154
2154
base.strided.nanmean,"\nbase.strided.nanmean( N:integer, x:Array|TypedArray, strideX:integer )\n Computes the arithmetic mean of a strided array, ignoring `NaN` values.\n"
2155
2155
base.strided.nanmean.ndarray,"\nbase.strided.nanmean.ndarray( N:integer, x:Array|TypedArray, strideX:integer, \n offsetX:integer )\n Computes the arithmetic mean of a strided array, ignoring `NaN` values and\n using alternative indexing semantics.\n"
2156
-
base.strided.nanmeanors,"\nbase.strided.nanmeanors( N:integer, x:Array|TypedArray, stride:integer )\n Computes the arithmetic mean of a strided array, ignoring `NaN` values and\n using ordinary recursive summation.\n"
2157
-
base.strided.nanmeanors.ndarray,"\nbase.strided.nanmeanors.ndarray( N:integer, x:Array|TypedArray, stride:integer, \n offset:integer )\n Computes the arithmetic mean of a strided array, ignoring `NaN` values and\n using ordinary recursive summation and alternative indexing semantics.\n"
2156
+
base.strided.nanmeanors,"\nbase.strided.nanmeanors( N:integer, x:Array|TypedArray, strideX:integer )\n Computes the arithmetic mean of a strided array, ignoring `NaN` values and\n using ordinary recursive summation.\n"
2157
+
base.strided.nanmeanors.ndarray,"\nbase.strided.nanmeanors.ndarray( N:integer, x:Array|TypedArray, \n strideX:integer, offsetX:integer )\n Computes the arithmetic mean of a strided array, ignoring `NaN` values and\n using ordinary recursive summation and alternative indexing semantics.\n"
2158
2158
base.strided.nanmeanpn,"\nbase.strided.nanmeanpn( N:integer, x:Array|TypedArray, strideX:integer )\n Computes the arithmetic mean of a strided array, ignoring `NaN` values and\n using a two-pass error correction algorithm.\n"
2159
2159
base.strided.nanmeanpn.ndarray,"\nbase.strided.nanmeanpn.ndarray( N:integer, x:Array|TypedArray, strideX:integer, \n offsetX:integer )\n Computes the arithmetic mean of a strided array, ignoring `NaN` values and\n using a two-pass error correction algorithm and alternative indexing\n semantics.\n"
2160
-
base.strided.nanmeanwd,"\nbase.strided.nanmeanwd( N:integer, x:Array|TypedArray, stride:integer )\n Computes the arithmetic mean of a strided array, ignoring `NaN` values and\n using Welford's algorithm.\n"
2161
-
base.strided.nanmeanwd.ndarray,"\nbase.strided.nanmeanwd.ndarray( N:integer, x:Array|TypedArray, stride:integer, \n offset:integer )\n Computes the arithmetic mean of a strided array, ignoring `NaN` values and\n using Welford's algorithm and alternative indexing semantics.\n"
2160
+
base.strided.nanmeanwd,"\nbase.strided.nanmeanwd( N:integer, x:Array|TypedArray, strideX:integer )\n Computes the arithmetic mean of a strided array, ignoring `NaN` values and\n using Welford's algorithm.\n"
2161
+
base.strided.nanmeanwd.ndarray,"\nbase.strided.nanmeanwd.ndarray( N:integer, x:Array|TypedArray, strideX:integer, \n offsetX:integer )\n Computes the arithmetic mean of a strided array, ignoring `NaN` values and\n using Welford's algorithm and alternative indexing semantics.\n"
2162
2162
base.strided.nanmin,"\nbase.strided.nanmin( N:integer, x:Array|TypedArray, strideX:integer )\n Computes the minimum value of a strided array, ignoring `NaN` values.\n"
2163
2163
base.strided.nanmin.ndarray,"\nbase.strided.nanmin.ndarray( N:integer, x:Array|TypedArray, strideX:integer, \n offsetX:integer )\n Computes the minimum value of a strided array, ignoring `NaN` values and\n using alternative indexing semantics.\n"
2164
2164
base.strided.nanminabs,"\nbase.strided.nanminabs( N:integer, x:Array|TypedArray, strideX:integer )\n Computes the minimum absolute value of a strided array, ignoring `NaN`\n values.\n"
@@ -2175,24 +2175,24 @@ base.strided.nanrange,"\nbase.strided.nanrange( N:integer, x:Array|TypedArray, s
2175
2175
base.strided.nanrange.ndarray,"\nbase.strided.nanrange.ndarray( N:integer, x:Array|TypedArray, strideX:integer, \n offsetX:integer )\n Computes the range of a strided array, ignoring `NaN` values and using\n alternative indexing semantics.\n"
2176
2176
base.strided.nanrangeBy,"\nbase.strided.nanrangeBy( N:integer, x:Array|TypedArray|Object, stride:integer, \n clbk:Function[, thisArg:any] )\n Calculates the range of a strided array via a callback function, ignoring\n `NaN` values.\n"
2177
2177
base.strided.nanrangeBy.ndarray,"\nbase.strided.nanrangeBy.ndarray( N:integer, x:Array|TypedArray|Object, \n stride:integer, offset:integer, clbk:Function[, thisArg:any] )\n Calculates the range of a strided array via a callback function, ignoring\n `NaN` values and using alternative indexing semantics.\n"
2178
-
base.strided.nanstdev,"\nbase.strided.nanstdev( N:integer, correction:number, x:Array|TypedArray, \n stride:integer )\n Computes the standard deviation of a strided array ignoring `NaN` values.\n"
2179
-
base.strided.nanstdev.ndarray,"\nbase.strided.nanstdev.ndarray( N:integer, correction:number, \n x:Array|TypedArray, stride:integer, offset:integer )\n Computes the standard deviation of a strided array ignoring `NaN` values and\n using alternative indexing semantics.\n"
2178
+
base.strided.nanstdev,"\nbase.strided.nanstdev( N:integer, correction:number, x:Array|TypedArray, \n strideX:integer )\n Computes the standard deviation of a strided array ignoring `NaN` values.\n"
2179
+
base.strided.nanstdev.ndarray,"\nbase.strided.nanstdev.ndarray( N:integer, correction:number, \n x:Array|TypedArray, strideX:integer, offsetX:integer )\n Computes the standard deviation of a strided array ignoring `NaN` values and\n using alternative indexing semantics.\n"
2180
2180
base.strided.nanstdevch,"\nbase.strided.nanstdevch( N:integer, correction:number, x:Array|TypedArray, \n stride:integer )\n Computes the standard deviation of a strided array ignoring `NaN` values and\n using a one-pass trial mean algorithm.\n"
2181
2181
base.strided.nanstdevch.ndarray,"\nbase.strided.nanstdevch.ndarray( N:integer, correction:number, \n x:Array|TypedArray, stride:integer, offset:integer )\n Computes the standard deviation of a strided array ignoring `NaN` values and\n using a one-pass trial mean algorithm and alternative indexing semantics.\n"
2182
-
base.strided.nanstdevpn,"\nbase.strided.nanstdevpn( N:integer, correction:number, x:Array|TypedArray, \n stride:integer )\n Computes the standard deviation of a strided array ignoring `NaN` values and\n using a two-pass algorithm.\n"
2183
-
base.strided.nanstdevpn.ndarray,"\nbase.strided.nanstdevpn.ndarray( N:integer, correction:number, \n x:Array|TypedArray, stride:integer, offset:integer )\n Computes the standard deviation of a strided array ignoring `NaN` values and\n using a two-pass algorithm and alternative indexing semantics.\n"
2182
+
base.strided.nanstdevpn,"\nbase.strided.nanstdevpn( N:integer, correction:number, x:Array|TypedArray, \n strideX:integer )\n Computes the standard deviation of a strided array ignoring `NaN` values and\n using a two-pass algorithm.\n"
2183
+
base.strided.nanstdevpn.ndarray,"\nbase.strided.nanstdevpn.ndarray( N:integer, correction:number, \n x:Array|TypedArray, strideX:integer, offsetX:integer )\n Computes the standard deviation of a strided array ignoring `NaN` values and\n using a two-pass algorithm and alternative indexing semantics.\n"
2184
2184
base.strided.nanstdevtk,"\nbase.strided.nanstdevtk( N:integer, correction:number, x:Array|TypedArray, \n stride:integer )\n Computes the standard deviation of a strided array ignoring `NaN` values and\n using a one-pass textbook algorithm.\n"
2185
2185
base.strided.nanstdevtk.ndarray,"\nbase.strided.nanstdevtk.ndarray( N:integer, correction:number, \n x:Array|TypedArray, stride:integer, offset:integer )\n Computes the standard deviation of a strided array ignoring `NaN` values and\n using a one-pass textbook algorithm and alternative indexing semantics.\n"
2186
2186
base.strided.nanstdevwd,"\nbase.strided.nanstdevwd( N:integer, correction:number, x:Array|TypedArray, \n stride:integer )\n Computes the standard deviation of a strided array ignoring `NaN` values and\n using Welford's algorithm.\n"
2187
2187
base.strided.nanstdevwd.ndarray,"\nbase.strided.nanstdevwd.ndarray( N:integer, correction:number, \n x:Array|TypedArray, stride:integer, offset:integer )\n Computes the standard deviation of a strided array ignoring `NaN` values and\n using Welford's algorithm and alternative indexing semantics.\n"
2188
-
base.strided.nanstdevyc,"\nbase.strided.nanstdevyc( N:integer, correction:number, x:Array|TypedArray, \n stride:integer )\n Computes the standard deviation of a strided array ignoring `NaN` values and\n using a one-pass algorithm proposed by Youngs and Cramer.\n"
2189
-
base.strided.nanstdevyc.ndarray,"\nbase.strided.nanstdevyc.ndarray( N:integer, correction:number, \n x:Array|TypedArray, stride:integer, offset:integer )\n Computes the standard deviation of a strided array ignoring `NaN` values and\n using a one-pass algorithm proposed by Youngs and Cramer and alternative\n indexing semantics.\n"
2190
-
base.strided.nanvariance,"\nbase.strided.nanvariance( N:integer, correction:number, x:Array|TypedArray, \n stride:integer )\n Computes the variance of a strided array ignoring `NaN` values.\n"
2191
-
base.strided.nanvariance.ndarray,"\nbase.strided.nanvariance.ndarray( N:integer, correction:number, \n x:Array|TypedArray, stride:integer, offset:integer )\n Computes the variance of a strided array ignoring `NaN` values and using\n alternative indexing semantics.\n"
2188
+
base.strided.nanstdevyc,"\nbase.strided.nanstdevyc( N:integer, correction:number, x:Array|TypedArray, \n strideX:integer )\n Computes the standard deviation of a strided array ignoring `NaN` values and\n using a one-pass algorithm proposed by Youngs and Cramer.\n"
2189
+
base.strided.nanstdevyc.ndarray,"\nbase.strided.nanstdevyc.ndarray( N:integer, correction:number, \n x:Array|TypedArray, strideX:integer, offsetX:integer )\n Computes the standard deviation of a strided array ignoring `NaN` values and\n using a one-pass algorithm proposed by Youngs and Cramer and alternative\n indexing semantics.\n"
2190
+
base.strided.nanvariance,"\nbase.strided.nanvariance( N:integer, correction:number, x:Array|TypedArray, \n strideX:integer )\n Computes the variance of a strided array ignoring `NaN` values.\n"
2191
+
base.strided.nanvariance.ndarray,"\nbase.strided.nanvariance.ndarray( N:integer, correction:number, \n x:Array|TypedArray, strideX:integer, offsetX:integer )\n Computes the variance of a strided array ignoring `NaN` values and using\n alternative indexing semantics.\n"
2192
2192
base.strided.nanvariancech,"\nbase.strided.nanvariancech( N:integer, correction:number, x:Array|TypedArray, \n strideX:integer )\n Computes the variance of a strided array ignoring `NaN` values and using a\n one-pass trial mean algorithm.\n"
2193
2193
base.strided.nanvariancech.ndarray,"\nbase.strided.nanvariancech.ndarray( N:integer, correction:number, \n x:Array|TypedArray, strideX:integer, offsetX:integer )\n Computes the variance of a strided array ignoring `NaN` values and using a\n one-pass trial mean algorithm and alternative indexing semantics.\n"
2194
-
base.strided.nanvariancepn,"\nbase.strided.nanvariancepn( N:integer, correction:number, x:Array|TypedArray, \n stride:integer )\n Computes the variance of a strided array ignoring `NaN` values and using a\n two-pass algorithm.\n"
2195
-
base.strided.nanvariancepn.ndarray,"\nbase.strided.nanvariancepn.ndarray( N:integer, correction:number, \n x:Array|TypedArray, stride:integer, offset:integer )\n Computes the variance of a strided array ignoring `NaN` values and using a\n two-pass algorithm and alternative indexing semantics.\n"
2194
+
base.strided.nanvariancepn,"\nbase.strided.nanvariancepn( N:integer, correction:number, x:Array|TypedArray, \n strideX:integer )\n Computes the variance of a strided array ignoring `NaN` values and using a\n two-pass algorithm.\n"
2195
+
base.strided.nanvariancepn.ndarray,"\nbase.strided.nanvariancepn.ndarray( N:integer, correction:number, \n x:Array|TypedArray, strideX:integer, offsetX:integer )\n Computes the variance of a strided array ignoring `NaN` values and using a\n two-pass algorithm and alternative indexing semantics.\n"
2196
2196
base.strided.nanvariancetk,"\nbase.strided.nanvariancetk( N:integer, correction:number, x:Array|TypedArray, \n strideX:integer )\n Computes the variance of a strided array ignoring `NaN` values and using a\n one-pass textbook algorithm.\n"
2197
2197
base.strided.nanvariancetk.ndarray,"\nbase.strided.nanvariancetk.ndarray( N:integer, correction:number, \n x:Array|TypedArray, strideX:integer, offsetX:integer )\n Computes the variance of a strided array ignoring `NaN` values and using a\n one-pass textbook algorithm and alternative indexing semantics.\n"
2198
2198
base.strided.nanvariancewd,"\nbase.strided.nanvariancewd( N:integer, correction:number, x:Array|TypedArray, \n strideX:integer )\n Computes the variance of a strided array ignoring `NaN` values and using\n Welford's algorithm.\n"
0 commit comments