Reverse the order of elements along the second-to-last dimension of a five-dimensional nested input array.
var flipud5d = require( '@stdlib/array/base/flipud5d' );
Reverses the order of elements along the second-to-last dimension of a five-dimensional nested input array.
var out = flipud5d( [ [ [ [ [ 1, 2 ], [ 3, 4 ] ] ] ] ] );
// returns [ [ [ [ [ 3, 4 ], [ 1, 2 ] ] ] ] ]
var discreteUniform = require( '@stdlib/random/base/discrete-uniform' ).factory;
var filled5dBy = require( '@stdlib/array/base/filled5d-by' );
var flipud5d = require( '@stdlib/array/base/flipud5d' );
var x = filled5dBy( [ 1, 2, 3, 3, 3 ], discreteUniform( -50, 50 ) );
console.log( x );
var y = flipud5d( x );
console.log( y );
@stdlib/array/base/flipud2d
: reverse the order of elements along the first dimension of a two-dimensional nested input array.@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.