fliplr2d

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

Usage

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

fliplr2d( x )

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

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

Examples

var discreteUniform = require( '@stdlib/random/base/discrete-uniform' ).factory;
var filled2dBy = require( '@stdlib/array/base/filled2d-by' );
var fliplr2d = require( '@stdlib/array/base/fliplr2d' );

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

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