Callback invoked for each array element.
Callback invoked for each array element.
Callback invoked for each array element.
Callback invoked for each array element.
Callback invoked for each array element.
Applies a function to each nested element in an array of arrays and assigns the result to a nested element in a new array of arrays.
The applied function is provided the following arguments:
array of arrays
function to apply
input function context
array of arrays
var naryFunction = require( '@stdlib/utils/nary-function' );
var abs = require( '@stdlib/math/base/special/abs' );
var arr = [
[ -1, -2, -3 ],
[ -4, -5, -6 ]
];
var out = map2d( arr, naryFunction( abs, 1 ) );
// returns [ [ 1, 2, 3 ], [ 4, 5, 6 ] ]
Two-dimensional input array.