Skip to content

CartesianProduct

CartesianProduct(list1, list2)

returns the cartesian product for multiple lists.

See:

Examples

>> CartesianProduct({1,2},{3,4})
{{1,3},{1,4},{2,3},{2,4}}

Implementation status

  • ✅ - full supported

Github