Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Feb 8, 2025
1 parent 3745dce commit f149948
Show file tree
Hide file tree
Showing 15 changed files with 26 additions and 21 deletions.
1 change: 0 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ indent_style = tab
[*.{f,f.txt}]
indent_style = space
indent_size = 2
insert_final_newline = false

# Set properties for shell files:
[*.{sh,sh.txt}]
Expand Down
1 change: 0 additions & 1 deletion .github/.keepalive

This file was deleted.

6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<section class="release" id="unreleased">

## Unreleased (2024-12-30)
## Unreleased (2025-02-08)

<section class="features">

Expand Down Expand Up @@ -34,6 +34,7 @@ This release closes the following issue:

<details>

- [`836170d`](https://github.com/stdlib-js/stdlib/commit/836170decec14309639deb41ae3a3c22256d68af) - **refactor:** update paths _(by gururaj1512)_
- [`2af4b75`](https://github.com/stdlib-js/stdlib/commit/2af4b757cab1052ee7a788f2154f2c7b8c9aa9bb) - **docs:** add note _(by Athan Reines)_
- [`c328fc5`](https://github.com/stdlib-js/stdlib/commit/c328fc515fc925ee717ed9cd844cca83a61da806) - **feat:** add `array/base/mskbinary3d` [(#3193)](https://github.com/stdlib-js/stdlib/pull/3193) _(by Rylan Yang, Athan Reines, stdlib-bot)_

Expand All @@ -47,10 +48,11 @@ This release closes the following issue:

### Contributors

A total of 2 people contributed to this release. Thank you to the following contributors:
A total of 3 people contributed to this release. Thank you to the following contributors:

- Athan Reines
- Rylan Yang
- gururaj1512

</section>

Expand Down
7 changes: 6 additions & 1 deletion CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ Daniel Killenberger <daniel.killenberger@gmail.com>
Daniel Yu <40680511+Daniel777y@users.noreply.github.com>
Debashis Maharana <debashismaharana7854@gmail.com>
Desh Deepak Kant <118960904+DeshDeepakKant@users.noreply.github.com>
Dev Goel <135586571+corsairier@users.noreply.github.com>
Dhruv Arvind Singh <154677013+DhruvArvindSingh@users.noreply.github.com>
Divyansh Seth <59174836+sethdivyansh@users.noreply.github.com>
Dominic Lim <46486515+domlimm@users.noreply.github.com>
Dominik Moritz <domoritz@gmail.com>
Expand All @@ -49,6 +51,7 @@ Joey Reed <joeyrreed@gmail.com>
Jordan Gallivan <115050475+Jordan-Gallivan@users.noreply.github.com>
Joris Labie <joris.labie1@gmail.com>
Justin Dennison <justin1dennison@gmail.com>
Karan Anand <119553199+anandkaranubc@users.noreply.github.com>
Karthik Prakash <116057817+skoriop@users.noreply.github.com>
Kohantika Nath <145763549+kohantikanath@users.noreply.github.com>
Krishnendu Das <86651039+itskdhere@users.noreply.github.com>
Expand All @@ -60,6 +63,7 @@ Marcus Fantham <mfantham@users.noreply.github.com>
Matt Cochrane <matthew.cochrane.eng@gmail.com>
Mihir Pandit <129577900+MSP20086@users.noreply.github.com>
Milan Raj <rajsite@users.noreply.github.com>
Mohammad Bin Aftab <48010758+MohammadBinAftab@users.noreply.github.com>
Mohammad Kaif <mdkaifprofession@gmail.com>
Momtchil Momtchev <momtchil@momtchev.com>
Muhammad Haris <harriskhan047@outlook.com>
Expand Down Expand Up @@ -117,10 +121,11 @@ UtkershBasnet <119008923+UtkershBasnet@users.noreply.github.com>
Vaibhav Patel <98279986+noobCoderVP@users.noreply.github.com>
Varad Gupta <varadgupta21@gmail.com>
Vinit Pandit <106718914+MeastroZI@users.noreply.github.com>
Vivek maurya <155618190+vivekmaurya001@users.noreply.github.com>
Vivek Maurya <vm8118134@gmail.com>
Xiaochuan Ye <tap91624@gmail.com>
Yaswanth Kosuru <116426380+yaswanthkosuru@users.noreply.github.com>
Yernar Yergaziyev <yernar.yergaziyev@erg.kz>
olenkabilonizhka <62379231+olenkabilonizhka@users.noreply.github.com>
pranav-1720 <123018993+pranav-1720@users.noreply.github.com>
rainn <88160429+AmCodesLame@users.noreply.github.com>
rei2hu <reimu@reimu.ws>
2 changes: 1 addition & 1 deletion NOTICE
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Copyright (c) 2016-2024 The Stdlib Authors.
Copyright (c) 2016-2025 The Stdlib Authors.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ var mskbinary3d = require( '@stdlib/array-base-mskbinary3d' );
Applies a binary callback to elements in two three-dimensional nested input arrays according to elements in a three-dimensional nested mask array and assigns results to elements in a three-dimensional nested output array.

```javascript
var add = require( '@stdlib/math-base-ops-add' );
var add = require( '@stdlib/number-float64-base-add' );
var zeros3d = require( '@stdlib/array-base-zeros3d' );

var x = [
Expand Down Expand Up @@ -126,7 +126,7 @@ var discreteUniform = require( '@stdlib/random-base-discrete-uniform' ).factory;
var bernoulli = require( '@stdlib/random-base-bernoulli' ).factory;
var filled3dBy = require( '@stdlib/array-base-filled3d-by' );
var zeros3d = require( '@stdlib/array-base-zeros3d' );
var add = require( '@stdlib/math-base-ops-add' );
var add = require( '@stdlib/number-float64-base-add' );
var mskbinary3d = require( '@stdlib/array-base-mskbinary3d' );

var shape = [ 3, 3, 3 ];
Expand Down Expand Up @@ -185,7 +185,7 @@ See [LICENSE][stdlib-license].

## Copyright

Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
Copyright &copy; 2016-2025. The Stdlib [Authors][stdlib-authors].

</section>

Expand Down
2 changes: 1 addition & 1 deletion benchmark/benchmark.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var bernoulli = require( '@stdlib/random-base-bernoulli' ).factory;
var isnan = require( '@stdlib/math-base-assert-is-nan' );
var pow = require( '@stdlib/math-base-special-pow' );
var floor = require( '@stdlib/math-base-special-floor' );
var add = require( '@stdlib/math-base-ops-add' );
var add = require( '@stdlib/number-float64-base-add' );
var filled3dBy = require( '@stdlib/array-base-filled3d-by' );
var zeros3d = require( '@stdlib/array-base-zeros3d' );
var numel = require( '@stdlib/ndarray-base-numel' );
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,24 +21,24 @@

Examples
--------
> var x = [
> var x = [
... [ [ 1.0, 2.0 ], [ 3.0, 4.0 ] ],
... [ [ 5.0, 6.0 ], [ 7.0, 8.0 ] ]
... ];
> var y = [
> var y = [
... [ [ 1.0, 2.0 ], [ 3.0, 4.0 ] ],
... [ [ 5.0, 6.0 ], [ 7.0, 8.0 ] ]
... ];
> var m = [
... [ [ 0, 1 ], [ 0, 0 ] ],
... [ [ 1, 0 ], [ 0, 1 ] ]
... ];
> var z = [
> var z = [
... [ [ 0.0, 0.0 ], [ 0.0, 0.0 ] ],
... [ [ 0.0, 0.0 ], [ 0.0, 0.0 ] ]
... ];
> var shape = [ 2, 2, 2 ];
> {{alias}}( [ x, y, m, z ], shape, {{alias:@stdlib/math/base/ops/add}} );
> {{alias}}( [ x, y, m, z ], shape, {{alias:@stdlib/number/float64/base/add}} );
> z
[ [ [ 2.0, 0.0 ], [ 6.0, 8.0 ] ], [ [ 0.0, 12.0 ], [ 14.0, 0.0 ] ] ]

Expand Down
2 changes: 1 addition & 1 deletion docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ type Binary<T, U, V> = ( v1: T, v2: U ) => V;
* @example
* var ones3d = require( '@stdlib/array-base-ones3d' );
* var zeros3d = require( '@stdlib/array-base-zeros3d' );
* var add = require( '@stdlib/math-base-ops-add' );
* var add = require( '@stdlib/number-float64-base-add' );
*
* var shape = [ 2, 2, 2 ];
*
Expand Down
2 changes: 1 addition & 1 deletion examples/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ var discreteUniform = require( '@stdlib/random-base-discrete-uniform' ).factory;
var bernoulli = require( '@stdlib/random-base-bernoulli' ).factory;
var filled3dBy = require( '@stdlib/array-base-filled3d-by' );
var zeros3d = require( '@stdlib/array-base-zeros3d' );
var add = require( '@stdlib/math-base-ops-add' );
var add = require( '@stdlib/number-float64-base-add' );
var mskbinary3d = require( './../lib' );

var shape = [ 3, 3, 3 ];
Expand Down
2 changes: 1 addition & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* @example
* var ones3d = require( '@stdlib/array-base-ones3d' );
* var zeros3d = require( '@stdlib/array-base-zeros3d' );
* var add = require( '@stdlib/math-base-ops-add' );
* var add = require( '@stdlib/number-float64-base-add' );
* var mskbinary3d = require( '@stdlib/array-base-mskbinary3d' );
*
* var shape = [ 2, 2, 2 ];
Expand Down
2 changes: 1 addition & 1 deletion lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
* @example
* var ones3d = require( '@stdlib/array-base-ones3d' );
* var zeros3d = require( '@stdlib/array-base-zeros3d' );
* var add = require( '@stdlib/math-base-ops-add' );
* var add = require( '@stdlib/number-float64-base-add' );
*
* var shape = [ 2, 2, 2 ];
*
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@
"@stdlib/array-base-filled3d-by": "^0.2.2",
"@stdlib/array-base-zeros3d": "^0.2.2",
"@stdlib/math-base-assert-is-nan": "^0.2.2",
"@stdlib/math-base-ops-add": "^0.2.2",
"@stdlib/math-base-special-floor": "^0.2.3",
"@stdlib/math-base-special-pow": "^0.3.0",
"@stdlib/ndarray-base-numel": "^0.2.2",
"@stdlib/number-float64-base-add": "github:stdlib-js/number-float64-base-add#main",
"@stdlib/random-base-bernoulli": "^0.2.1",
"@stdlib/random-base-discrete-uniform": "^0.2.1",
"@stdlib/random-base-uniform": "^0.2.1",
Expand Down
2 changes: 1 addition & 1 deletion test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
// MODULES //

var tape = require( 'tape' );
var add = require( '@stdlib/math-base-ops-add' );
var add = require( '@stdlib/number-float64-base-add' );
var zeros3d = require( '@stdlib/array-base-zeros3d' );
var mskbinary3d = require( './../lib' );

Expand Down

0 comments on commit f149948

Please sign in to comment.