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: README.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -125,6 +125,7 @@ In addition, the namespace contains the following multidimensional array utility
125
125
- <spanclass="signature">[`dtypes( [kind] )`][@stdlib/ndarray/dtypes]</span><spanclass="delimiter">: </span><spanclass="description">list of ndarray data types.</span>
126
126
- <spanclass="signature">[`emptyLike( x[, options] )`][@stdlib/ndarray/empty-like]</span><spanclass="delimiter">: </span><spanclass="description">create an uninitialized ndarray having the same shape and data type as a provided ndarray.</span>
127
127
- <spanclass="signature">[`empty( shape[, options] )`][@stdlib/ndarray/empty]</span><spanclass="delimiter">: </span><spanclass="description">create an uninitialized ndarray having a specified shape and data type.</span>
128
+
- <spanclass="signature">[`everyBy( x[, options], predicate[, thisArg] )`][@stdlib/ndarray/every-by]</span><spanclass="delimiter">: </span><spanclass="description">test whether all elements along one or more `ndarray` dimensions pass a test implemented by a predicate function.</span>
128
129
- <spanclass="signature">[`every( x[, options] )`][@stdlib/ndarray/every]</span><spanclass="delimiter">: </span><spanclass="description">test whether every element along one or more `ndarray` dimensions is truthy.</span>
- <spanclass="signature">[`fillBy( x, fcn[, thisArg] )`][@stdlib/ndarray/fill-by]</span><spanclass="delimiter">: </span><spanclass="description">fill an input ndarray according to a callback function.</span>
@@ -190,6 +191,8 @@ In addition, the namespace contains the following multidimensional array utility
190
191
- <spanclass="signature">[`sub2ind( shape, ...subscripts[, options] )`][@stdlib/ndarray/sub2ind]</span><spanclass="delimiter">: </span><spanclass="description">convert subscripts to a linear index.</span>
191
192
- <spanclass="signature">[`ndarray2array( x )`][@stdlib/ndarray/to-array]</span><spanclass="delimiter">: </span><spanclass="description">convert an ndarray to a generic array.</span>
192
193
- <spanclass="signature">[`ndarray2fancy( x[, options] )`][@stdlib/ndarray/to-fancy]</span><spanclass="delimiter">: </span><spanclass="description">convert an ndarray to an object supporting fancy indexing.</span>
194
+
- <spanclass="signature">[`toFlippedlr( x )`][@stdlib/ndarray/to-flippedlr]</span><spanclass="delimiter">: </span><spanclass="description">return a new `ndarray` where the order of elements along the last dimension of an input `ndarray` is reversed.</span>
195
+
- <spanclass="signature">[`toFlippedud( x )`][@stdlib/ndarray/to-flippedud]</span><spanclass="delimiter">: </span><spanclass="description">return a new `ndarray` where the order of elements along the second-to-last dimension of an input `ndarray` is reversed.</span>
193
196
- <spanclass="signature">[`ndarray2json( x )`][@stdlib/ndarray/to-json]</span><spanclass="delimiter">: </span><spanclass="description">serialize an ndarray as a JSON object.</span>
194
197
- <spanclass="signature">[`toReversedDimension( x[, options] )`][@stdlib/ndarray/to-reversed-dimension]</span><spanclass="delimiter">: </span><spanclass="description">return a new ndarray where the order of elements of an input ndarray along a specified dimension is reversed.</span>
195
198
- <spanclass="signature">[`toReversed( x )`][@stdlib/ndarray/to-reversed]</span><spanclass="delimiter">: </span><spanclass="description">return a new `ndarray` where the order of elements of an input `ndarray` is reversed along each dimension.</span>
0 commit comments