Concatenates any number of series or tables.
CONCAT(series1, series2, ..., seriesN)
seriesN |
- |
One or more series. The series to concatenate |
A table or series whose length is the end-to-end sum of the input lengths.
W1: {1, 2, 3}
W2: concat(W1, rev(W1))
W2 contains the series {1, 2, 3, 3, 2, 1}
W1: {{1, 2}, {3, 4}}
W2: {{5, 6}, {7, 8}}
W3: concat(w1, w2)
W4: ravel(w1, w2)
W1 == {{1, 2},
{3, 4}},
W2 == {{5, 6},
{7, 8}}
W3 == {{1, 2},
{3, 4},
{5, 6},
{7, 8}}
W4 == {{1, 2, 5, 6},
{3, 4, 7, 8}}
CONCAT combines
concat(W1, W2, W6, gcos(100, 0.1))
creates a new series by appending the series in Window 1, Window 2 and Window 6, and a generated cosine wave end-to-end.
concat(W3..W8)
concatenates the series in Windows 3 through 8.
CONCAT concatenates tables on a
CONCAT operates on any number of series.
CONCAT operates on both Real and Complex series and returns a complex series if any of the input series are Complex.
See the {} operator to combine scalars and/or series.
See the @= operator or the APPEND function to append one or more series in place.
See RAVEL to combine tables on a
concat(a, b) is equivalent to a @@ b.