fliplr5d

Reverse the order of elements along the last dimension of a five-dimensional nested input array.

Usage

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

fliplr5d( x )

Reverses the order of elements along the last dimension of a five-dimensional nested input array.

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

Examples

var discreteUniform = require( '@stdlib/random/base/discrete-uniform' ).factory;
var filled5dBy = require( '@stdlib/array/base/filled5d-by' );
var fliplr5d = require( '@stdlib/array/base/fliplr5d' );

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

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