Skip to content

Commit d00c364

Browse files
committed
Auto-generated commit
1 parent a94a7aa commit d00c364

5 files changed

Lines changed: 17 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
### Features
1212

13+
- [`3b2c72e`](https://github.com/stdlib-js/stdlib/commit/3b2c72e1a3a24bdba3702b64269cab622481e240) - add `rotr90` to namespace
1314
- [`a44f4d3`](https://github.com/stdlib-js/stdlib/commit/a44f4d395d772927cb9f6435b939580d4c4ad783) - add `ndarray/rotr90` [(#11631)](https://github.com/stdlib-js/stdlib/pull/11631)
1415
- [`6117db9`](https://github.com/stdlib-js/stdlib/commit/6117db9a02e613a5a5dc02e2d948c1d900c93739) - add `hconcat` to namespace
1516
- [`50e53a1`](https://github.com/stdlib-js/stdlib/commit/50e53a18d36e39662e7bf8f69e720f5df5cc9df1) - add `ndarray/hconcat` [(#11583)](https://github.com/stdlib-js/stdlib/pull/11583)
@@ -861,6 +862,10 @@ A total of 49 issues were closed in this release:
861862

862863
<details>
863864

865+
- [`2672e84`](https://github.com/stdlib-js/stdlib/commit/2672e84fbdd07c44dfd4b6c0fca31e7f4695d247) - **docs:** update toc _(by Athan Reines)_
866+
- [`3b2c72e`](https://github.com/stdlib-js/stdlib/commit/3b2c72e1a3a24bdba3702b64269cab622481e240) - **feat:** add `rotr90` to namespace _(by Athan Reines)_
867+
- [`f756fa1`](https://github.com/stdlib-js/stdlib/commit/f756fa1beaad4aa5b7961b61c19c0d866f0e5cbf) - **docs:** update note _(by Athan Reines)_
868+
- [`c2c401e`](https://github.com/stdlib-js/stdlib/commit/c2c401e37ffad15d7a1638dc6b148d6a671e418a) - **docs:** update note _(by Athan Reines)_
864869
- [`a44f4d3`](https://github.com/stdlib-js/stdlib/commit/a44f4d395d772927cb9f6435b939580d4c4ad783) - **feat:** add `ndarray/rotr90` [(#11631)](https://github.com/stdlib-js/stdlib/pull/11631) _(by Muhammad Haris, Athan Reines)_
865870
- [`59ef54e`](https://github.com/stdlib-js/stdlib/commit/59ef54e322f02dc4cfacb0b1ff98d5869341a33c) - **docs:** organize functions _(by Athan Reines)_
866871
- [`6117db9`](https://github.com/stdlib-js/stdlib/commit/6117db9a02e613a5a5dc02e2d948c1d900c93739) - **feat:** add `hconcat` to namespace _(by Athan Reines)_

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ The namespace exports the following functions to create multidimensional arrays:
8787

8888
The namespace exports the following functions to manipulate multidimensional arrays:
8989

90-
<!-- <toc pattern="+(broadcast-array|broadcast-arrays|broadcast-scalar|colcat|concat|concat1d|fill|fill-by|fill-slice|flatten|flatten-by|flatten-from|flatten-from-by|flip|fliplr|flipud|hconcat|map|maybe-broadcast-array|maybe-broadcast-arrays|pop|prepend-singleton-dimensions|push|remove-singleton-dimensions|reverse|reverse-dimension|rowcat|shift|slice|slice-assign|slice-dimension|slice-dimension-from|slice-dimension-to|slice-from|slice-to|spread-dimensions|to-flippedlr|to-flippedud|to-reversed|to-reversed-dimension|unshift|vconcat|with)"> -->
90+
<!-- <toc pattern="+(broadcast-array|broadcast-arrays|broadcast-scalar|colcat|concat|concat1d|fill|fill-by|fill-slice|flatten|flatten-by|flatten-from|flatten-from-by|flip|fliplr|flipud|hconcat|map|maybe-broadcast-array|maybe-broadcast-arrays|pop|prepend-singleton-dimensions|push|remove-singleton-dimensions|reverse|reverse-dimension|rotr90|rowcat|shift|slice|slice-assign|slice-dimension|slice-dimension-from|slice-dimension-to|slice-from|slice-to|spread-dimensions|to-flippedlr|to-flippedud|to-reversed|to-reversed-dimension|unshift|vconcat|with)"> -->
9191

9292
<div class="namespace-toc">
9393

lib/index.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -720,6 +720,15 @@ setReadOnly( ns, 'reverse', require( './../reverse' ) );
720720
*/
721721
setReadOnly( ns, 'reverseDimension', require( './../reverse-dimension' ) );
722722

723+
/**
724+
* @name rotr90
725+
* @memberof ns
726+
* @readonly
727+
* @type {Function}
728+
* @see {@link module:@stdlib/ndarray/rotr90}
729+
*/
730+
setReadOnly( ns, 'rotr90', require( './../rotr90' ) );
731+
723732
/**
724733
* @name rowcat
725734
* @memberof ns

rotr90/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ The function accepts the following arguments:
7171

7272
- If `k > 0`, the function rotates the matrix clockwise.
7373
- If `k < 0`, the function rotates the matrix counterclockwise.
74-
- If provided an [`ndarray`][@stdlib/ndarray/ctor] with fewer than two dimensions, the function does not perform rotation and simply returns a new view of the input [`ndarray`][@stdlib/ndarray/ctor].
74+
- If provided an [`ndarray`][@stdlib/ndarray/ctor] with fewer than two dimensions, the function does not perform a rotation and simply returns a new view of the input [`ndarray`][@stdlib/ndarray/ctor].
7575

7676
</section>
7777

rotr90/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
function rotates the matrix counterclockwise.
88

99
If provided an ndarray with fewer than two dimensions, the function does not
10-
perform rotation and simply returns a new view of the input ndarray.
10+
perform a rotation and simply returns a new view of the input ndarray.
1111

1212
Parameters
1313
----------

0 commit comments

Comments
 (0)