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
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -60,6 +60,7 @@ var o = ns;
60
60
- <spanclass="signature">[`bytesPerElement( dtype )`][@stdlib/ndarray/base/bytes-per-element]</span><spanclass="delimiter">: </span><spanclass="description">return the number of bytes per element provided an underlying array data type.</span>
61
61
- <spanclass="signature">[`char2dtype( [ch] )`][@stdlib/ndarray/base/char2dtype]</span><spanclass="delimiter">: </span><spanclass="description">return the data type string associated with a provided single letter character abbreviation.</span>
62
62
- <spanclass="signature">[`clampIndex( idx, max )`][@stdlib/ndarray/base/clamp-index]</span><spanclass="delimiter">: </span><spanclass="description">restrict an index to the interval `[0,max]`.</span>
63
+
- <spanclass="signature">[`countTruthy( arrays )`][@stdlib/ndarray/base/count-truthy]</span><spanclass="delimiter">: </span><spanclass="description">count the number of truthy elements in an ndarray.</span>
63
64
- <spanclass="signature">[`ndarray( dtype, buffer, shape, strides, offset, order )`][@stdlib/ndarray/base/ctor]</span><spanclass="delimiter">: </span><spanclass="description">create a multidimensional array.</span>
64
65
- <spanclass="signature">[`data( x )`][@stdlib/ndarray/base/data-buffer]</span><spanclass="delimiter">: </span><spanclass="description">return the underlying data buffer of a provided ndarray.</span>
65
66
- <spanclass="signature">[`dtypeChar( [dtype] )`][@stdlib/ndarray/base/dtype-char]</span><spanclass="delimiter">: </span><spanclass="description">return the single letter abbreviation for an underlying array data type.</span>
@@ -153,6 +154,7 @@ var o = ns;
153
154
- <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>
154
155
- <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>
155
156
- <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>
157
+
- <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>
156
158
- <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>
157
159
- <spanclass="signature">[`unaryStrided1dDispatchFactory( table, idtypes, odtypes, policies[, options] )`][@stdlib/ndarray/base/unary-strided1d-dispatch-factory]</span><spanclass="delimiter">: </span><spanclass="description">create a function for applying a strided function an input ndarray.</span>
158
160
- <spanclass="signature">[`unaryStrided1dDispatch( table, idtypes, odtypes, policies[, options] )`][@stdlib/ndarray/base/unary-strided1d-dispatch]</span><spanclass="delimiter">: </span><spanclass="description">constructor for applying a strided function to an input ndarray.</span>
0 commit comments