Cartesian Product Table

../../../../../_images/cartesian_product.svg

Cartesian product of a number of tables create a new table containing all combinations of rows of the inputs. This output have one column for each unique column in the input tables. For example two tables with A and B columns of length N and M each create a new table of length N * M and containing A + B columns. It is an error to have duplicate column names.

class node_cartesian_product.CartesianProductTable[source]

Cartesian product of two or more Tables into a single Table.

Inputs:
in : table

Input Tables

Outputs:
out : table

Table with cartesian product of inputs

Configuration: