@stdlib/array-base-unarynd
v0.2.2
Published
Apply a unary callback to elements in an n-dimensional nested input array and assign results to elements in an n-dimensional nested output array.
Downloads
6
Readme
unarynd
Apply a unary callback to elements in an n-dimensional nested input array and assign results to elements in an n-dimensional nested output array.
Installation
npm install @stdlib/array-base-unarynd
Usage
var unarynd = require( '@stdlib/array-base-unarynd' );
unarynd( arrays, shape, fcn )
Applies a unary callback to elements in an n-dimensional nested input array and assigns results to elements in an n-dimensional nested output array.
var abs = require( '@stdlib/math-base-special-abs' );
var x = [ [ -1.0, -2.0 ], [ -3.0, -4.0 ] ];
var shape = [ 2, 2 ];
// Compute the absolute values in-place:
unarynd( [ x, x ], shape, abs );
// x => [ [ 1.0, 2.0 ], [ 3.0, 4.0 ] ]
The function accepts the following arguments:
- arrays: array-like object containing one input nested array and one output nested array.
- shape: array shape.
- fcn: unary function to apply.
Notes
- The function assumes that the input and output arrays have the same shape.
Examples
var discreteUniform = require( '@stdlib/random-base-discrete-uniform' ).factory;
var filledndBy = require( '@stdlib/array-base-fillednd-by' );
var zerosnd = require( '@stdlib/array-base-zerosnd' );
var abs = require( '@stdlib/math-base-special-abs' );
var unarynd = require( '@stdlib/array-base-unarynd' );
var shape = [ 3, 3 ];
var x = filledndBy( shape, discreteUniform( -100, 100 ) );
console.log( x );
var y = zerosnd( shape );
console.log( y );
unarynd( [ x, y ], shape, abs );
console.log( y );
shape = [ 3, 3, 3 ];
x = filledndBy( shape, discreteUniform( -100, 100 ) );
console.log( x );
y = zerosnd( shape );
console.log( y );
unarynd( [ x, y ], shape, abs );
console.log( y );
Notice
This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.
For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.
Community
License
See LICENSE.
Copyright
Copyright © 2016-2024. The Stdlib Authors.