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/README.md
+18-18Lines changed: 18 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -99,7 +99,9 @@ The namespace exports the following functions to manipulate multidimensional arr
99
99
- <spanclass="signature">[`removeSingletonDimensions( x )`][@stdlib/ndarray/remove-singleton-dimensions]</span><spanclass="delimiter">: </span><spanclass="description">return a read-only view of an input ndarray with singleton dimensions removed.</span>
100
100
- <spanclass="signature">[`reverseDimension( x, dim )`][@stdlib/ndarray/reverse-dimension]</span><spanclass="delimiter">: </span><spanclass="description">return a **read-only** view of an input `ndarray` in which the order of elements along a specified dimension is reversed.</span>
101
101
- <spanclass="signature">[`reverse( x )`][@stdlib/ndarray/reverse]</span><spanclass="delimiter">: </span><spanclass="description">return a **read-only** view of an input `ndarray` in which the order of elements along each dimension is reversed.</span>
102
+
- <spanclass="signature">[`rot180( x[, options] )`][@stdlib/ndarray/rot180]</span><spanclass="delimiter">: </span><spanclass="description">return a **read-only** view of an input ndarray rotated `180` degrees in a specified plane.</span>
102
103
- <spanclass="signature">[`rot90( x[, options] )`][@stdlib/ndarray/rot90]</span><spanclass="delimiter">: </span><spanclass="description">return a **read-only** view of an input ndarray rotated `90` degrees in a specified plane.</span>
104
+
- <spanclass="signature">[`rotl90( x, k )`][@stdlib/ndarray/rotl90]</span><spanclass="delimiter">: </span><spanclass="description">return a **read-only** view of a matrix (or a stack of matrices) rotated `90` degrees counterclockwise.</span>
103
105
- <spanclass="signature">[`rotr90( x, k )`][@stdlib/ndarray/rotr90]</span><spanclass="delimiter">: </span><spanclass="description">return a **read-only** view of a matrix (or a stack of matrices) rotated `90` degrees clockwise.</span>
104
106
- <spanclass="signature">[`rowcat( arrays )`][@stdlib/ndarray/rowcat]</span><spanclass="delimiter">: </span><spanclass="description">concatenate a list of one-dimensional or two-dimensional ndarrays as rows.</span>
105
107
- <spanclass="signature">[`shift( x[, options] )`][@stdlib/ndarray/shift]</span><spanclass="delimiter">: </span><spanclass="description">return an array containing a read-only truncated view of an input `ndarray` and a read-only view of the first element(s) along a specified dimension.</span>
@@ -115,6 +117,10 @@ The namespace exports the following functions to manipulate multidimensional arr
115
117
- <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>
116
118
- <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>
117
119
- <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>
120
+
- <spanclass="signature">[`toRot180( x[, options] )`][@stdlib/ndarray/to-rot180]</span><spanclass="delimiter">: </span><spanclass="description">return a new `ndarray` where an input `ndarray` is rotated `180` degrees in a specified plane.</span>
121
+
- <spanclass="signature">[`toRot90( x[, options] )`][@stdlib/ndarray/to-rot90]</span><spanclass="delimiter">: </span><spanclass="description">return a new `ndarray` where an input `ndarray` is rotated `90` degrees in a specified plane.</span>
122
+
- <spanclass="signature">[`toRotl90( x, k )`][@stdlib/ndarray/to-rotl90]</span><spanclass="delimiter">: </span><spanclass="description">return a new `ndarray` where a matrix (or a stack of matrices) is rotated 90 degrees counterclockwise.</span>
123
+
- <spanclass="signature">[`toRotr90( x, k )`][@stdlib/ndarray/to-rotr90]</span><spanclass="delimiter">: </span><spanclass="description">return a new `ndarray` where a matrix (or a stack of matrices) is rotated 90 degrees clockwise.</span>
118
124
- <spanclass="signature">[`unshift( x, ...values )`][@stdlib/ndarray/unshift]</span><spanclass="delimiter">: </span><spanclass="description">return a one-dimensional ndarray formed by prepending provided scalar values to a one-dimensional input ndarray.</span>
119
125
- <spanclass="signature">[`vconcat( arrays )`][@stdlib/ndarray/vconcat]</span><spanclass="delimiter">: </span><spanclass="description">concatenate a list of ndarrays along the second-to-last dimension.</span>
120
126
- <spanclass="signature">[`ndarrayWith( x, indices, value )`][@stdlib/ndarray/with]</span><spanclass="delimiter">: </span><spanclass="description">return a new ndarray with the element at a specified index replaced by a provided value.</span>
@@ -264,12 +270,6 @@ The namespace contains the following multidimensional array utility functions:
264
270
- <spanclass="signature">[`forEach( x, fcn[, thisArg] )`][@stdlib/ndarray/for-each]</span><spanclass="delimiter">: </span><spanclass="description">invoke a callback function once for each ndarray element.</span>
265
271
- <spanclass="signature">[`ndarraylike2scalar( x )`][@stdlib/ndarray/ndarraylike2scalar]</span><spanclass="delimiter">: </span><spanclass="description">convert an ndarray-like object to a scalar value.</span>
266
272
- <spanclass="signature">[`orders()`][@stdlib/ndarray/orders]</span><spanclass="delimiter">: </span><spanclass="description">list of ndarray orders.</span>
267
-
- <spanclass="signature">[`rot180( x[, options] )`][@stdlib/ndarray/rot180]</span><spanclass="delimiter">: </span><spanclass="description">return a **read-only** view of an input ndarray rotated `180` degrees in a specified plane.</span>
268
-
- <spanclass="signature">[`rotl90( x, k )`][@stdlib/ndarray/rotl90]</span><spanclass="delimiter">: </span><spanclass="description">return a **read-only** view of a matrix (or a stack of matrices) rotated `90` degrees counterclockwise.</span>
269
-
- <spanclass="signature">[`toRot180( x[, options] )`][@stdlib/ndarray/to-rot180]</span><spanclass="delimiter">: </span><spanclass="description">return a new `ndarray` where an input `ndarray` is rotated `180` degrees in a specified plane.</span>
270
-
- <spanclass="signature">[`toRot90( x[, options] )`][@stdlib/ndarray/to-rot90]</span><spanclass="delimiter">: </span><spanclass="description">return a new `ndarray` where an input `ndarray` is rotated `90` degrees in a specified plane.</span>
271
-
- <spanclass="signature">[`toRotl90( x, k )`][@stdlib/ndarray/to-rotl90]</span><spanclass="delimiter">: </span><spanclass="description">return a new `ndarray` where a matrix (or a stack of matrices) is rotated 90 degrees counterclockwise.</span>
272
-
- <spanclass="signature">[`toRotr90( x, k )`][@stdlib/ndarray/to-rotr90]</span><spanclass="delimiter">: </span><spanclass="description">return a new `ndarray` where a matrix (or a stack of matrices) is rotated 90 degrees clockwise.</span>
273
273
- <spanclass="signature">[`unflatten( x, dim, sizes )`][@stdlib/ndarray/unflatten]</span><spanclass="delimiter">: </span><spanclass="description">return a read-only view of an input ndarray in which a specified dimension is expanded over multiple dimensions.</span>
0 commit comments