'use strict'; var flatten = require('../../utils/array').flatten; function factory (type, config, load, typed) { var index = load(require('../../type/matrix/MatrixIndex')); var matrix = load(require('../../type/matrix/DenseMatrix')); var size = load(require('../matrix/size')); var subset = load(require('../matrix/subset')); var compareNatural = load(require('../relational/compareNatural')); /** * Create the cartesian product of two (multi)sets. * Multi-dimension arrays will be converted to single-dimension arrays before the operation. * * Syntax: * * math.setCartesian(set1, set2) * * Examples: * * math.setCartesian([1, 2], [3, 4]); // returns [[1, 3], [1, 4], [2, 3], [2, 4]] * * See also: * * setUnion, setIntersect, setDifference, setPowerset * * @param {Array | Matrix} a1 A (multi)set * @param {Array | Matrix} a2 A (multi)set * @return {Array | Matrix} The cartesian product of two (multi)sets */ var setCartesian = typed('setCartesian', { 'Array | Matrix, Array | Matrix': function (a1, a2) { if (subset(size(a1), new index(0)) === 0 || subset(size(a2), new index(0)) === 0) { // if any of them is empty, return empty var result = []; } else { var b1 = flatten(Array.isArray(a1) ? a1 : a1.toArray()).sort(compareNatural); var b2 = flatten(Array.isArray(a2) ? a2 : a2.toArray()).sort(compareNatural); var result = []; for (var i=0; i