Package Exports
- @stdlib/utils-unzip
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@stdlib/utils-unzip) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Unzip
Unzip a zipped array (i.e., a nested array of tuples).
Installation
npm install @stdlib/utils-unzip
Usage
var unzip = require( '@stdlib/utils-unzip' );
unzip( arr[, idx] )
Unzips a zipped array (i.e., a nested array
of tuples).
var arr = [ [ 1, 'a', 3 ], [ 2, 'b', 4 ] ];
var out = unzip( arr );
// returns [ [ 1, 2 ], [ 'a', 'b' ], [ 3, 4 ] ];
To unzip specific tuple elements, you can provide an array
of indices as an optional second argument.
var arr = [ [ 1, 'a', 3 ], [ 2, 'b', 4 ] ];
var out = unzip( arr, [ 0, 2 ] );
// returns [ [ 1, 2 ], [ 3, 4 ] ];
Examples
var unzip = require( '@stdlib/utils-unzip' );
var round = require( '@stdlib/math-base-special-round' );
var randu = require( '@stdlib/random-base-randu' );
var pow = require( '@stdlib/math-base-special-pow' );
var arr;
var len;
var out;
var i;
var j;
arr = new Array( 100 );
len = 5;
for ( i = 0; i < arr.length; i++ ) {
arr[ i ] = new Array( len );
for ( j = 0; j < len; j++ ) {
arr[ i ][ j ] = round( randu() * pow(10, j) );
}
}
out = unzip( arr );
console.dir( out );
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
License
See LICENSE.
Copyright
Copyright © 2016-2021. The Stdlib Authors.