UNPKG

869 BMarkdownView Raw
1<!-- Note: This file is automatically generated from source code comments. Changes made in this file will be overridden. -->
2
3# Function setCartesian
4
5Create the cartesian product of two (multi)sets.
6Multi-dimension arrays will be converted to single-dimension arrays before the operation.
7
8
9## Syntax
10
11```js
12math.setCartesian(set1, set2)
13```
14
15### Parameters
16
17Parameter | Type | Description
18--------- | ---- | -----------
19`a1` | Array &#124; Matrix | A (multi)set
20`a2` | Array &#124; Matrix | A (multi)set
21
22### Returns
23
24Type | Description
25---- | -----------
26Array &#124; Matrix | The cartesian product of two (multi)sets
27
28
29## Examples
30
31```js
32math.setCartesian([1, 2], [3, 4]) // returns [[1, 3], [1, 4], [2, 3], [2, 4]]
33```
34
35
36## See also
37
38[setUnion](setUnion.md),
39[setIntersect](setIntersect.md),
40[setDifference](setDifference.md),
41[setPowerset](setPowerset.md)