0.2.1 • Published 3 months ago

@stdlib/array-base-flipud5d v0.2.1

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
3 months ago

flipud5d

NPM version Build Status Coverage Status

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

Installation

npm install @stdlib/array-base-flipud5d

Usage

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

flipud5d( x )

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 ] ] ] ] ]

Examples

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 );

Notice

This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.

For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.

Community

Chat


License

See LICENSE.

Copyright

Copyright © 2016-2024. The Stdlib Authors.