Skip to content

Commit b1efb82

Browse files
committed
Auto-generated commit
1 parent 53543ff commit b1efb82

2 files changed

Lines changed: 19 additions & 18 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -908,6 +908,7 @@ A total of 49 issues were closed in this release:
908908

909909
<details>
910910

911+
- [`d0fd1f1`](https://github.com/stdlib-js/stdlib/commit/d0fd1f10228b3cfa94db6c475595925a6b76ffb8) - **docs:** update namespace table of contents [(#11898)](https://github.com/stdlib-js/stdlib/pull/11898) _(by stdlib-bot)_
911912
- [`632bef3`](https://github.com/stdlib-js/stdlib/commit/632bef35c4b9d42d7707c1f4e6f0b3c9ed002144) - **feat:** add `ndarray/base/diagonal` [(#11851)](https://github.com/stdlib-js/stdlib/pull/11851) _(by Muhammad Haris, Athan Reines)_
912913
- [`553d9b4`](https://github.com/stdlib-js/stdlib/commit/553d9b4650ce25ef26d7c6e54bbf715f76001cbe) - **feat:** add `ndarray/base/reverse-dimensions` [(#9894)](https://github.com/stdlib-js/stdlib/pull/9894) _(by Muhammad Haris, Athan Reines)_
913914
- [`498aed4`](https://github.com/stdlib-js/stdlib/commit/498aed42b0cf7323abc97c9d18b76534dc25ee6f) - **refactor:** update error message _(by Athan Reines)_

README.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,9 @@ The namespace exports the following functions to manipulate multidimensional arr
132132
- <span class="signature">[`removeSingletonDimensions( x )`][@stdlib/ndarray/remove-singleton-dimensions]</span><span class="delimiter">: </span><span class="description">return a read-only view of an input ndarray with singleton dimensions removed.</span>
133133
- <span class="signature">[`reverseDimension( x, dim )`][@stdlib/ndarray/reverse-dimension]</span><span class="delimiter">: </span><span class="description">return a **read-only** view of an input `ndarray` in which the order of elements along a specified dimension is reversed.</span>
134134
- <span class="signature">[`reverse( x )`][@stdlib/ndarray/reverse]</span><span class="delimiter">: </span><span class="description">return a **read-only** view of an input `ndarray` in which the order of elements along each dimension is reversed.</span>
135+
- <span class="signature">[`rot180( x[, options] )`][@stdlib/ndarray/rot180]</span><span class="delimiter">: </span><span class="description">return a **read-only** view of an input ndarray rotated `180` degrees in a specified plane.</span>
135136
- <span class="signature">[`rot90( x[, options] )`][@stdlib/ndarray/rot90]</span><span class="delimiter">: </span><span class="description">return a **read-only** view of an input ndarray rotated `90` degrees in a specified plane.</span>
137+
- <span class="signature">[`rotl90( x, k )`][@stdlib/ndarray/rotl90]</span><span class="delimiter">: </span><span class="description">return a **read-only** view of a matrix (or a stack of matrices) rotated `90` degrees counterclockwise.</span>
136138
- <span class="signature">[`rotr90( x, k )`][@stdlib/ndarray/rotr90]</span><span class="delimiter">: </span><span class="description">return a **read-only** view of a matrix (or a stack of matrices) rotated `90` degrees clockwise.</span>
137139
- <span class="signature">[`rowcat( arrays )`][@stdlib/ndarray/rowcat]</span><span class="delimiter">: </span><span class="description">concatenate a list of one-dimensional or two-dimensional ndarrays as rows.</span>
138140
- <span class="signature">[`shift( x[, options] )`][@stdlib/ndarray/shift]</span><span class="delimiter">: </span><span class="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
148150
- <span class="signature">[`toFlippedud( x )`][@stdlib/ndarray/to-flippedud]</span><span class="delimiter">: </span><span class="description">return a new `ndarray` where the order of elements along the second-to-last dimension of an input `ndarray` is reversed.</span>
149151
- <span class="signature">[`toReversedDimension( x[, options] )`][@stdlib/ndarray/to-reversed-dimension]</span><span class="delimiter">: </span><span class="description">return a new ndarray where the order of elements of an input ndarray along a specified dimension is reversed.</span>
150152
- <span class="signature">[`toReversed( x )`][@stdlib/ndarray/to-reversed]</span><span class="delimiter">: </span><span class="description">return a new `ndarray` where the order of elements of an input `ndarray` is reversed along each dimension.</span>
153+
- <span class="signature">[`toRot180( x[, options] )`][@stdlib/ndarray/to-rot180]</span><span class="delimiter">: </span><span class="description">return a new `ndarray` where an input `ndarray` is rotated `180` degrees in a specified plane.</span>
154+
- <span class="signature">[`toRot90( x[, options] )`][@stdlib/ndarray/to-rot90]</span><span class="delimiter">: </span><span class="description">return a new `ndarray` where an input `ndarray` is rotated `90` degrees in a specified plane.</span>
155+
- <span class="signature">[`toRotl90( x, k )`][@stdlib/ndarray/to-rotl90]</span><span class="delimiter">: </span><span class="description">return a new `ndarray` where a matrix (or a stack of matrices) is rotated 90 degrees counterclockwise.</span>
156+
- <span class="signature">[`toRotr90( x, k )`][@stdlib/ndarray/to-rotr90]</span><span class="delimiter">: </span><span class="description">return a new `ndarray` where a matrix (or a stack of matrices) is rotated 90 degrees clockwise.</span>
151157
- <span class="signature">[`unshift( x, ...values )`][@stdlib/ndarray/unshift]</span><span class="delimiter">: </span><span class="description">return a one-dimensional ndarray formed by prepending provided scalar values to a one-dimensional input ndarray.</span>
152158
- <span class="signature">[`vconcat( arrays )`][@stdlib/ndarray/vconcat]</span><span class="delimiter">: </span><span class="description">concatenate a list of ndarrays along the second-to-last dimension.</span>
153159
- <span class="signature">[`ndarrayWith( x, indices, value )`][@stdlib/ndarray/with]</span><span class="delimiter">: </span><span class="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:
297303
- <span class="signature">[`forEach( x, fcn[, thisArg] )`][@stdlib/ndarray/for-each]</span><span class="delimiter">: </span><span class="description">invoke a callback function once for each ndarray element.</span>
298304
- <span class="signature">[`ndarraylike2scalar( x )`][@stdlib/ndarray/ndarraylike2scalar]</span><span class="delimiter">: </span><span class="description">convert an ndarray-like object to a scalar value.</span>
299305
- <span class="signature">[`orders()`][@stdlib/ndarray/orders]</span><span class="delimiter">: </span><span class="description">list of ndarray orders.</span>
300-
- <span class="signature">[`rot180( x[, options] )`][@stdlib/ndarray/rot180]</span><span class="delimiter">: </span><span class="description">return a **read-only** view of an input ndarray rotated `180` degrees in a specified plane.</span>
301-
- <span class="signature">[`rotl90( x, k )`][@stdlib/ndarray/rotl90]</span><span class="delimiter">: </span><span class="description">return a **read-only** view of a matrix (or a stack of matrices) rotated `90` degrees counterclockwise.</span>
302-
- <span class="signature">[`toRot180( x[, options] )`][@stdlib/ndarray/to-rot180]</span><span class="delimiter">: </span><span class="description">return a new `ndarray` where an input `ndarray` is rotated `180` degrees in a specified plane.</span>
303-
- <span class="signature">[`toRot90( x[, options] )`][@stdlib/ndarray/to-rot90]</span><span class="delimiter">: </span><span class="description">return a new `ndarray` where an input `ndarray` is rotated `90` degrees in a specified plane.</span>
304-
- <span class="signature">[`toRotl90( x, k )`][@stdlib/ndarray/to-rotl90]</span><span class="delimiter">: </span><span class="description">return a new `ndarray` where a matrix (or a stack of matrices) is rotated 90 degrees counterclockwise.</span>
305-
- <span class="signature">[`toRotr90( x, k )`][@stdlib/ndarray/to-rotr90]</span><span class="delimiter">: </span><span class="description">return a new `ndarray` where a matrix (or a stack of matrices) is rotated 90 degrees clockwise.</span>
306306
- <span class="signature">[`unflatten( x, dim, sizes )`][@stdlib/ndarray/unflatten]</span><span class="delimiter">: </span><span class="description">return a read-only view of an input ndarray in which a specified dimension is expanded over multiple dimensions.</span>
307307

308308
</div>
@@ -424,18 +424,6 @@ Copyright &copy; 2016-2026. The Stdlib [Authors][stdlib-authors].
424424

425425
[@stdlib/ndarray/orders]: https://github.com/stdlib-js/ndarray/tree/main/orders
426426

427-
[@stdlib/ndarray/rot180]: https://github.com/stdlib-js/ndarray/tree/main/rot180
428-
429-
[@stdlib/ndarray/rotl90]: https://github.com/stdlib-js/ndarray/tree/main/rotl90
430-
431-
[@stdlib/ndarray/to-rot180]: https://github.com/stdlib-js/ndarray/tree/main/to-rot180
432-
433-
[@stdlib/ndarray/to-rot90]: https://github.com/stdlib-js/ndarray/tree/main/to-rot90
434-
435-
[@stdlib/ndarray/to-rotl90]: https://github.com/stdlib-js/ndarray/tree/main/to-rotl90
436-
437-
[@stdlib/ndarray/to-rotr90]: https://github.com/stdlib-js/ndarray/tree/main/to-rotr90
438-
439427
[@stdlib/ndarray/unflatten]: https://github.com/stdlib-js/ndarray/tree/main/unflatten
440428

441429
[@stdlib/ndarray/base]: https://github.com/stdlib-js/ndarray/tree/main/base
@@ -590,8 +578,12 @@ Copyright &copy; 2016-2026. The Stdlib [Authors][stdlib-authors].
590578

591579
[@stdlib/ndarray/reverse]: https://github.com/stdlib-js/ndarray/tree/main/reverse
592580

581+
[@stdlib/ndarray/rot180]: https://github.com/stdlib-js/ndarray/tree/main/rot180
582+
593583
[@stdlib/ndarray/rot90]: https://github.com/stdlib-js/ndarray/tree/main/rot90
594584

585+
[@stdlib/ndarray/rotl90]: https://github.com/stdlib-js/ndarray/tree/main/rotl90
586+
595587
[@stdlib/ndarray/rotr90]: https://github.com/stdlib-js/ndarray/tree/main/rotr90
596588

597589
[@stdlib/ndarray/rowcat]: https://github.com/stdlib-js/ndarray/tree/main/rowcat
@@ -622,6 +614,14 @@ Copyright &copy; 2016-2026. The Stdlib [Authors][stdlib-authors].
622614

623615
[@stdlib/ndarray/to-reversed]: https://github.com/stdlib-js/ndarray/tree/main/to-reversed
624616

617+
[@stdlib/ndarray/to-rot180]: https://github.com/stdlib-js/ndarray/tree/main/to-rot180
618+
619+
[@stdlib/ndarray/to-rot90]: https://github.com/stdlib-js/ndarray/tree/main/to-rot90
620+
621+
[@stdlib/ndarray/to-rotl90]: https://github.com/stdlib-js/ndarray/tree/main/to-rotl90
622+
623+
[@stdlib/ndarray/to-rotr90]: https://github.com/stdlib-js/ndarray/tree/main/to-rotr90
624+
625625
[@stdlib/ndarray/unshift]: https://github.com/stdlib-js/ndarray/tree/main/unshift
626626

627627
[@stdlib/ndarray/vconcat]: https://github.com/stdlib-js/ndarray/tree/main/vconcat

0 commit comments

Comments
 (0)