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 Nov 25, 2024
1 parent d4fb495 commit c120bb0
Show file tree
Hide file tree
Showing 12 changed files with 1,063 additions and 6 deletions.
15 changes: 9 additions & 6 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-11-22)
## Unreleased (2024-11-25)

<section class="packages">

Expand Down Expand Up @@ -264,6 +264,7 @@

##### Features

- [`cb27ec4`](https://github.com/stdlib-js/stdlib/commit/cb27ec42bd7e65c46877e57064d36ff9b38b502b) - add `array/base/mskbinary4d` [(#3196)](https://github.com/stdlib-js/stdlib/pull/3196)
- [`c328fc5`](https://github.com/stdlib-js/stdlib/commit/c328fc515fc925ee717ed9cd844cca83a61da806) - add `array/base/mskbinary3d` [(#3193)](https://github.com/stdlib-js/stdlib/pull/3193)

</section>
Expand All @@ -274,9 +275,9 @@

##### Closed Issues

This release closes the following issue:
A total of 2 issues were closed in this release:

[#3178](https://github.com/stdlib-js/stdlib/issues/3178)
[#3178](https://github.com/stdlib-js/stdlib/issues/3178), [#3179](https://github.com/stdlib-js/stdlib/issues/3179)

</section>

Expand Down Expand Up @@ -410,9 +411,9 @@ A total of 2 issues were closed in this release:

### Closed Issues

A total of 3 issues were closed in this release:
A total of 4 issues were closed in this release:

[#3135](https://github.com/stdlib-js/stdlib/issues/3135), [#3138](https://github.com/stdlib-js/stdlib/issues/3138), [#3178](https://github.com/stdlib-js/stdlib/issues/3178)
[#3135](https://github.com/stdlib-js/stdlib/issues/3135), [#3138](https://github.com/stdlib-js/stdlib/issues/3138), [#3178](https://github.com/stdlib-js/stdlib/issues/3178), [#3179](https://github.com/stdlib-js/stdlib/issues/3179)

</section>

Expand All @@ -422,9 +423,10 @@ A total of 3 issues were closed in this release:

### Contributors

A total of 4 people contributed to this release. Thank you to the following contributors:
A total of 5 people contributed to this release. Thank you to the following contributors:

- Aayush Khanna
- Abhijit
- Athan Reines
- Philipp Burckhardt
- Rylan Yang
Expand All @@ -439,6 +441,7 @@ A total of 4 people contributed to this release. Thank you to the following cont

<details>

- [`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)_
- [`e3a2173`](https://github.com/stdlib-js/stdlib/commit/e3a2173a24bd8634f333cace626fc2d71740ebd3) - **feat:** add `every` method to `array/fixed-endian-factory` [(#3200)](https://github.com/stdlib-js/stdlib/pull/3200) _(by Aayush Khanna, 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)_
- [`9ba0dbd`](https://github.com/stdlib-js/stdlib/commit/9ba0dbd839707695a05fda5d4f50d67c5aba52f7) - **chore:** use relative paths to load main package export _(by Philipp Burckhardt)_
Expand Down
1 change: 1 addition & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ Roman Stetsyk <[email protected]>
Rutam <[email protected]>
Ruthwik Chikoti <[email protected]>
Ryan Seal <[email protected]>
Rylan Yang <[email protected]>
Sai Srikar Dumpeti <[email protected]>
SarthakPaandey <[email protected]>
Saurabh Singh <[email protected]>
Expand Down
128 changes: 128 additions & 0 deletions base/mskbinary4d/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,128 @@
<!--
@license Apache-2.0
Copyright (c) 2024 The Stdlib Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->

# mskbinary4d

> Apply a binary callback to elements in two four-dimensional nested input arrays according to elements in a four-dimensional nested mask array and assign results to elements in a four-dimensional nested output array.
<section class="intro">

</section>

<!-- /.intro -->

<section class="usage">

## Usage

```javascript
var mskbinary4d = require( '@stdlib/array/base/mskbinary4d' );
```

#### mskbinary4d( arrays, shape, fcn )

Applies a binary callback to elements in two four-dimensional nested input arrays according to elements in a four-dimensional nested mask array and assigns results to elements in a four-dimensional nested output array.

```javascript
var add = require( '@stdlib/math/base/ops/add' );
var zeros4d = require( '@stdlib/array/base/zeros4d' );

var x = [ [ [ [ 1.0, 2.0 ], [ 3.0, 4.0 ] ] ] ];
var z = zeros4d( [ 1, 1, 2, 2 ] );

var mask = [ [ [ [ 0, 1 ], [ 0, 0 ] ] ] ];

var shape = [ 1, 1, 2, 2 ];

mskbinary4d( [ x, x, mask, z ], shape, add );
// z => [ [ [ [ 2.0, 0.0 ], [ 6.0, 8.0 ] ] ] ]
```

The function accepts the following arguments:

- **arrays**: array-like object containing two input nested arrays, an input nested mask array, and one output nested array.
- **shape**: array shape.
- **fcn**: binary function to apply.

</section>

<!-- /.usage -->

<section class="notes">

## Notes

- The function assumes that the input and output arrays have the same shape.

</section>

<!-- /.notes -->

<section class="examples">

## Examples

<!-- eslint no-undef: "error" -->

```javascript
var discreteUniform = require( '@stdlib/random/base/discrete-uniform' ).factory;
var bernoulli = require( '@stdlib/random/base/bernoulli' ).factory;
var filled4dBy = require( '@stdlib/array/base/filled4d-by' );
var zeros4d = require( '@stdlib/array/base/zeros4d' );
var add = require( '@stdlib/math/base/ops/add' );
var mskbinary4d = require( '@stdlib/array/base/mskbinary4d' );

var shape = [ 2, 1, 3, 3 ];

var x = filled4dBy( shape, discreteUniform( -100, 100 ) );
console.log( x );

var y = filled4dBy( shape, discreteUniform( -100, 100 ) );
console.log( y );

var mask = filled4dBy( shape, bernoulli( 0.5 ) );
console.log( mask );

var z = zeros4d( shape );
console.log( z );

mskbinary4d( [ x, y, mask, z ], shape, add );
console.log( z );
```

</section>

<!-- /.examples -->

<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->

<section class="related">

</section>

<!-- /.related -->

<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->

<section class="links">

</section>

<!-- /.links -->
127 changes: 127 additions & 0 deletions base/mskbinary4d/benchmark/benchmark.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,127 @@
/**
* @license Apache-2.0
*
* Copyright (c) 2024 The Stdlib Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

'use strict';

// MODULES //

var bench = require( '@stdlib/bench' );
var uniform = require( '@stdlib/random/base/uniform' ).factory;
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 filled4dBy = require( './../../../base/filled4d-by' );
var zeros4d = require( './../../../base/zeros4d' );
var numel = require( '@stdlib/ndarray/base/numel' );
var pkg = require( './../package.json' ).name;
var mskbinary4d = require( './../lib' );


// FUNCTIONS //

/**
* Creates a benchmark function.
*
* @private
* @param {PositiveIntegerArray} shape - array shape
* @returns {Function} benchmark function
*/
function createBenchmark( shape ) {
var arrays;
var x;
var y;
var z;
var m;

x = filled4dBy( shape, uniform( -100.0, 100.0 ) );
y = filled4dBy( shape, uniform( -100.0, 100.0 ) );
m = filled4dBy( shape, bernoulli( 0.5 ) );
z = zeros4d( shape );

arrays = [ x, y, m, z ];

return benchmark;

/**
* Benchmark function.
*
* @private
* @param {Benchmark} b - benchmark instance
*/
function benchmark( b ) {
var i0;
var i1;
var i2;
var i3;
var i;

b.tic();
for ( i = 0; i < b.iterations; i++ ) {
mskbinary4d( arrays, shape, add );
i3 = i % shape[ 0 ];
i2 = i % shape[ 1 ];
i1 = i % shape[ 2 ];
i0 = i % shape[ 3 ];
if ( isnan( arrays[ 3 ][ i3 ][ i2 ][ i1 ][ i0 ] ) ) {
b.fail( 'should not return NaN' );
}
}
b.toc();

i3 = i % shape[ 0 ];
i2 = i % shape[ 1 ];
i1 = i % shape[ 2 ];
i0 = i % shape[ 3 ];
if ( isnan( arrays[ 3 ][ i3 ][ i2 ][ i1 ][ i0 ] ) ) {
b.fail( 'should not return NaN' );
}
b.pass( 'benchmark finished' );
b.end();
}
}


// MAIN //

/**
* Main execution sequence.
*
* @private
*/
function main() {
var min;
var max;
var sh;
var N;
var f;
var i;

min = 1; // 10^min
max = 6; // 10^max

for ( i = min; i <= max; i++ ) {
N = floor( pow( pow( 10, i ), 1.0/4.0 ) );
sh = [ N, N, N, N ];
f = createBenchmark( sh );
bench( pkg+'::equidimensional:size='+numel( sh ), f );
}
}

main();
35 changes: 35 additions & 0 deletions base/mskbinary4d/docs/repl.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@

{{alias}}( arrays, shape, fcn )
Applies a binary callback to elements in two four-dimensional nested input
arrays according to elements in a four-dimensional nested mask array and
assigns results to elements in a four-dimensional nested output array.

An element in an input array is "masked" if the corresponding element in the
mask array is non-zero.

Parameters
----------
arrays: ArrayLikeObject
Array-like object containing two input nested arrays, an input nested
mask array, and one output nested array.

shape: Array<integer>
Array shape.

fcn: Function
Binary callback.

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

See Also
--------

Loading

0 comments on commit c120bb0

Please sign in to comment.