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
+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
@@ -132,7 +132,9 @@ The namespace exports the following functions to manipulate multidimensional arr
132
132
- <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>
133
133
- <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>
134
134
- <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>
135
+
- <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>
135
136
- <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>
137
+
- <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>
136
138
- <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>
137
139
- <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>
138
140
- <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>
@@ -148,6 +150,10 @@ The namespace exports the following functions to manipulate multidimensional arr
148
150
- <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>
149
151
- <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>
150
152
- <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>
153
+
- <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>
154
+
- <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>
155
+
- <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>
156
+
- <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>
151
157
- <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>
152
158
- <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>
153
159
- <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>
@@ -297,12 +303,6 @@ The namespace contains the following multidimensional array utility functions:
297
303
- <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>
298
304
- <spanclass="signature">[`ndarraylike2scalar( x )`][@stdlib/ndarray/ndarraylike2scalar]</span><spanclass="delimiter">: </span><spanclass="description">convert an ndarray-like object to a scalar value.</span>
299
305
- <spanclass="signature">[`orders()`][@stdlib/ndarray/orders]</span><spanclass="delimiter">: </span><spanclass="description">list of ndarray orders.</span>
300
-
- <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>
301
-
- <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>
302
-
- <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>
303
-
- <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>
304
-
- <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>
305
-
- <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>
306
306
- <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