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
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/ndarray/base/README.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -155,12 +155,12 @@ var o = ns;
155
155
- <spanclass="signature">[`unaryInputCastingDataType( idtype, odtype, policy )`][@stdlib/ndarray/base/unary-input-casting-dtype]</span><spanclass="delimiter">: </span><spanclass="description">resolve the input ndarray casting data type for a unary function.</span>
156
156
- <spanclass="signature">[`unaryLoopOrder( shape, stridesX, stridesY )`][@stdlib/ndarray/base/unary-loop-interchange-order]</span><spanclass="delimiter">: </span><spanclass="description">reorder ndarray dimensions and associated strides for loop interchange.</span>
157
157
- <spanclass="signature">[`unaryOutputDataType( dtype, policy )`][@stdlib/ndarray/base/unary-output-dtype]</span><spanclass="delimiter">: </span><spanclass="description">resolve the output ndarray data type for a unary function.</span>
158
+
- <spanclass="signature">[`unaryReduceStrided1dAssignStruct( fcn, arrays, dims[, options] )`][@stdlib/ndarray/base/unary-reduce-strided1d-assign-struct]</span><spanclass="delimiter">: </span><spanclass="description">perform a reduction over a list of specified dimensions in an input ndarray via a one-dimensional strided array reduction function which accepts an output `struct` object and assign results to a provided output ndarray.</span>
158
159
- <spanclass="signature">[`unaryReduceStrided1dBy( fcn, arrays, dims[, options], clbk[, thisArg] )`][@stdlib/ndarray/base/unary-reduce-strided1d-by]</span><spanclass="delimiter">: </span><spanclass="description">perform a reduction over a list of specified dimensions in an input ndarray via a one-dimensional strided array reduction function accepting a callback and assign results to a provided output ndarray.</span>
159
160
- <spanclass="signature">[`unaryReduceStrided1dDispatchByFactory( table, idtypes, odtypes, policies )`][@stdlib/ndarray/base/unary-reduce-strided1d-dispatch-by-factory]</span><spanclass="delimiter">: </span><spanclass="description">create a function for performing a reduction on an input ndarray according to a callback function.</span>
160
161
- <spanclass="signature">[`unaryReduceStrided1dDispatchBy( table, idtypes, odtypes, policies )`][@stdlib/ndarray/base/unary-reduce-strided1d-dispatch-by]</span><spanclass="delimiter">: </span><spanclass="description">constructor for performing a reduction on an input ndarray according to a callback function.</span>
161
162
- <spanclass="signature">[`unaryReduceStrided1dDispatchFactory( table, idtypes, odtypes, policies )`][@stdlib/ndarray/base/unary-reduce-strided1d-dispatch-factory]</span><spanclass="delimiter">: </span><spanclass="description">create a function for performing a reduction on an input ndarray.</span>
162
163
- <spanclass="signature">[`unaryReduceStrided1dDispatch( table, idtypes, odtypes, policies )`][@stdlib/ndarray/base/unary-reduce-strided1d-dispatch]</span><spanclass="delimiter">: </span><spanclass="description">constructor for performing a reduction on an input ndarray.</span>
163
-
- <spanclass="signature">[`unaryReduceStrided1dToStruct( fcn, arrays, dims[, options] )`][@stdlib/ndarray/base/unary-reduce-strided1d-to-struct]</span><spanclass="delimiter">: </span><spanclass="description">perform a reduction over a list of specified dimensions in an input ndarray via a one-dimensional strided array reduction function and assign results to a provided output ndarray.</span>
164
164
- <spanclass="signature">[`unaryReduceStrided1d( fcn, arrays, dims[, options] )`][@stdlib/ndarray/base/unary-reduce-strided1d]</span><spanclass="delimiter">: </span><spanclass="description">perform a reduction over a list of specified dimensions in an input ndarray via a one-dimensional strided array reduction function and assign results to a provided output ndarray.</span>
165
165
- <spanclass="signature">[`unaryReduceSubarrayBy( fcn, arrays, dims[, options], clbk[, thisArg] )`][@stdlib/ndarray/base/unary-reduce-subarray-by]</span><spanclass="delimiter">: </span><spanclass="description">perform a reduction over a list of specified dimensions in an input ndarray according to a callback function and assign results to a provided output ndarray.</span>
166
166
- <spanclass="signature">[`unaryReduceSubarray( fcn, arrays, dims[, options] )`][@stdlib/ndarray/base/unary-reduce-subarray]</span><spanclass="delimiter">: </span><spanclass="description">perform a reduction over a list of specified dimensions in an input ndarray and assign results to a provided output ndarray.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/README.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -107,10 +107,10 @@ The namespace contains the following statistical functions:
107
107
- <spanclass="signature">[`stdevtk( N, correction, x, stride )`][@stdlib/stats/base/stdevtk]</span><spanclass="delimiter">: </span><spanclass="description">calculate the standard deviation of a strided array using a one-pass textbook algorithm.</span>
108
108
- <spanclass="signature">[`stdevwd( N, correction, x, stride )`][@stdlib/stats/base/stdevwd]</span><spanclass="delimiter">: </span><spanclass="description">calculate the standard deviation of a strided array using Welford's algorithm.</span>
109
109
- <spanclass="signature">[`stdevyc( N, correction, x, stride )`][@stdlib/stats/base/stdevyc]</span><spanclass="delimiter">: </span><spanclass="description">calculate the standard deviation of a strided array using a one-pass algorithm proposed by Youngs and Cramer.</span>
110
-
- <spanclass="signature">[`variance( N, correction, x, stride )`][@stdlib/stats/base/variance]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a strided array.</span>
110
+
- <spanclass="signature">[`variance( N, correction, x, strideX )`][@stdlib/stats/base/variance]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a strided array.</span>
111
111
- <spanclass="signature">[`variancech( N, correction, x, strideX )`][@stdlib/stats/base/variancech]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a strided array using a one-pass trial mean algorithm.</span>
112
112
- <spanclass="signature">[`variancepn( N, correction, x, strideX )`][@stdlib/stats/base/variancepn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a strided array using a two-pass algorithm.</span>
113
-
- <spanclass="signature">[`variancetk( N, correction, x, stride )`][@stdlib/stats/base/variancetk]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a strided array using a one-pass textbook algorithm.</span>
113
+
- <spanclass="signature">[`variancetk( N, correction, x, strideX )`][@stdlib/stats/base/variancetk]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a strided array using a one-pass textbook algorithm.</span>
114
114
- <spanclass="signature">[`variancewd( N, correction, x, stride )`][@stdlib/stats/base/variancewd]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a strided array using Welford's algorithm.</span>
115
115
- <spanclass="signature">[`varianceyc( N, correction, x, strideX )`][@stdlib/stats/base/varianceyc]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a strided array using a one-pass algorithm proposed by Youngs and Cramer.</span>
0 commit comments