@stdlib/array-base-flipud2d
v0.2.2
Published
Reverse the order of elements along the first dimension of a two-dimensional nested input array.
Downloads
49
Readme
flipud2d
Reverse the order of elements along the first dimension of a two-dimensional nested input array.
Installation
npm install @stdlib/array-base-flipud2d
Usage
var flipud2d = require( '@stdlib/array-base-flipud2d' );
flipud2d( x )
Reverses the order of elements along the first dimension of a two-dimensional nested input array.
var out = flipud2d( [ [ 1, 2 ], [ 3, 4 ] ] );
// returns [ [ 3, 4 ], [ 1, 2 ] ]
Examples
var discreteUniform = require( '@stdlib/random-base-discrete-uniform' ).factory;
var filled2dBy = require( '@stdlib/array-base-filled2d-by' );
var flipud2d = require( '@stdlib/array-base-flipud2d' );
var x = filled2dBy( [ 3, 3 ], discreteUniform( -50, 50 ) );
console.log( x );
var y = flipud2d( x );
console.log( y );
See Also
@stdlib/array-base/flipud3d
: reverse the order of elements along the second-to-last dimension of a three-dimensional nested input array.@stdlib/array-base/flipud4d
: reverse the order of elements along the second-to-last dimension of a four-dimensional nested input array.@stdlib/array-base/flipud5d
: reverse the order of elements along the second-to-last dimension of a five-dimensional nested input array.
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.