flipud3d

Reverse the order of elements along the second-to-last dimension of a three-dimensional nested input array.

Usage

var flipud3d = require( '@stdlib/array/base/flipud3d' );

flipud3d( x )

Reverses the order of elements along the second-to-last dimension of a three-dimensional nested input array.

var out = flipud3d( [ [ [ 1, 2 ], [ 3, 4 ] ] ] );
// returns [ [ [ 3, 4 ], [ 1, 2 ] ] ]

Examples

var discreteUniform = require( '@stdlib/random/base/discrete-uniform' ).factory;
var filled3dBy = require( '@stdlib/array/base/filled3d-by' );
var flipud3d = require( '@stdlib/array/base/flipud3d' );

var x = filled3dBy( [ 3, 3, 3 ], discreteUniform( -50, 50 ) );
console.log( x );

var y = flipud3d( x );
console.log( y );
Did you find this page helpful?