stdlib-js / array-base-cartesian-product

Return the Cartesian product.

Home Page:https://github.com/stdlib-js/stdlib

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

cartesianProduct

NPM version Build Status Coverage Status

Return the Cartesian product.

Installation

npm install @stdlib/array-base-cartesian-product

Alternatively,

The branches.md file summarizes the available branches and displays a diagram illustrating their relationships.

Usage

var cartesianProduct = require( '@stdlib/array-base-cartesian-product' );

cartesianProduct( x1, x2 )

Returns the Cartesian product.

var x1 = [ 1, 2, 3 ];
var x2 = [ 4, 5 ];

var out = cartesianProduct( x1, x2 );
// returns [ [ 1, 4 ], [ 1, 5 ], [ 2, 4 ], [ 2, 5 ], [ 3, 4 ], [ 3, 5 ] ]

If provided one or more empty arrays, the function returns an empty array.

var x1 = [ 1, 2, 3, 4 ];
var x2 = [];

var out = cartesianProduct( x1, x2 );
// returns []

Examples

var linspace = require( '@stdlib/array-base-linspace' );
var cartesianProduct = require( '@stdlib/array-base-cartesian-product' );

var x1 = linspace( 0, 5, 6 );
var x2 = linspace( 10, 15, 6 );

var out = cartesianProduct( x1, x2 );
// returns [ [ 0, 10 ], [ 0, 11 ], ..., [ 5, 14 ], [ 5, 15 ] ]

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-2022. The Stdlib Authors.

About

Return the Cartesian product.

https://github.com/stdlib-js/stdlib

License:Apache License 2.0


Languages

Language:Makefile 61.4%Language:JavaScript 38.6%