fliplr4d

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

Usage

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

fliplr4d( x )

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

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

Examples

var discreteUniform = require( '@stdlib/random/base/discrete-uniform' ).factory;
var filled4dBy = require( '@stdlib/array/base/filled4d-by' );
var fliplr4d = require( '@stdlib/array/base/fliplr4d' );

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

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