Skip to content

Commit 889cecf

Browse files
committed
Auto-generated commit
1 parent a41b1cd commit 889cecf

File tree

6 files changed

+10
-2
lines changed

6 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -477,6 +477,10 @@ A total of 6 people contributed to this release. Thank you to the following cont
477477

478478
<details>
479479

480+
- [`2af4b75`](https://github.com/stdlib-js/stdlib/commit/2af4b757cab1052ee7a788f2154f2c7b8c9aa9bb) - **docs:** add note _(by Athan Reines)_
481+
- [`10641b6`](https://github.com/stdlib-js/stdlib/commit/10641b65eee7299d16d0c0239575eafc6b575557) - **docs:** add note _(by Athan Reines)_
482+
- [`2c40c48`](https://github.com/stdlib-js/stdlib/commit/2c40c487c3f7cfcfa445d9855fb6c89b97ebf600) - **docs:** fix return values _(by Athan Reines)_
483+
- [`dc93a3a`](https://github.com/stdlib-js/stdlib/commit/dc93a3ac7351a59e0f61e6384312d96655cc2edc) - **docs:** fix return values _(by Athan Reines)_
480484
- [`b26d9d5`](https://github.com/stdlib-js/stdlib/commit/b26d9d5bd9e60a63ce017bbb470f0769b6dcc628) - **feat:** add `array/base/mskunary5d` [(#3207)](https://github.com/stdlib-js/stdlib/pull/3207) _(by Vinit Pandit, Athan Reines, Abhijit, stdlib-bot)_
481485
- [`34ae5c9`](https://github.com/stdlib-js/stdlib/commit/34ae5c9570bf6428dc5bede92557ae56981554c2) - **feat:** add `array/base/mskbinary5d` [(#3198)](https://github.com/stdlib-js/stdlib/pull/3198) _(by Abhijit)_
482486
- [`cb27ec4`](https://github.com/stdlib-js/stdlib/commit/cb27ec42bd7e65c46877e57064d36ff9b38b502b) - **feat:** add `array/base/mskbinary4d` [(#3196)](https://github.com/stdlib-js/stdlib/pull/3196) _(by Abhijit, Athan Reines)_

CONTRIBUTORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# Contributors listed in alphabetical order.
44

55
Aayush Khanna <[email protected]>
6+
67
AbhijitRaut04 <[email protected]>
78
Adarsh Palaskar <[email protected]>
89
Aditya Sapra <[email protected]>
@@ -107,6 +108,7 @@ Utkarsh Raj <[email protected]>
107108
UtkershBasnet <[email protected]>
108109
Vaibhav Patel <[email protected]>
109110
Varad Gupta <[email protected]>
111+
Vinit Pandit <[email protected]>
110112
Xiaochuan Ye <[email protected]>
111113
Yernar Yergaziyev <[email protected]>
112114

base/broadcasted-quaternary2d/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ type InOutShapes = [
109109
* bquaternary2d( [ x, y, z, w, out ], shapes, add );
110110
*
111111
* console.log( out );
112-
* // => [ [ 4.0, 8.0 ], [ 12.0, 16.0 ] ]
112+
* // => [ [ 4.0, 4.0 ], [ 4.0, 4.0 ] ]
113113
*/
114114
declare function bquaternary2d<T = unknown, U = unknown, V = unknown, W = unknown, X = unknown>( arrays: InOutArrays<T, U, V, W, X>, shapes: InOutShapes, fcn: Quaternary<T, U, V, W, X> ): void;
115115

base/broadcasted-ternary2d/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ type InOutShapes = [
104104
* bternary2d( [ x, y, z, out ], shapes, add );
105105
*
106106
* console.log( out );
107-
* // => [ [ 3.0, 6.0 ], [ 9.0, 12.0 ] ]
107+
* // => [ [ 3.0, 3.0 ], [ 3.0, 3.0 ] ]
108108
*/
109109
declare function bternary2d<T = unknown, U = unknown, V = unknown, W = unknown>( arrays: InOutArrays<T, U, V, W>, shapes: InOutShapes, fcn: Ternary<T, U, V, W> ): void;
110110

base/mskbinary2d/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ The function accepts the following arguments:
7070
## Notes
7171

7272
- The function assumes that the input and output arrays have the same shape.
73+
- An element in an input array is "masked" if the corresponding element in the mask array is non-zero.
7374

7475
</section>
7576

base/mskbinary3d/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ The function accepts the following arguments:
7676
## Notes
7777

7878
- The function assumes that the input and output arrays have the same shape.
79+
- An element in an input array is "masked" if the corresponding element in the mask array is non-zero.
7980

8081
</section>
8182

0 commit comments

Comments
 (0)