DADiSP Worksheet Functions > Function Categories > Data Manipulation and Editing > APPEND

 

APPEND

Purpose:

Appends a series onto an existing series.

Syntax:

APPEND(series, series1, series2, …, seriesN)

series

-

A series, the destination series to append onto.

seriesN

-

One or more series. The series to append to the destination series.

Returns:

Nothing, one or more series are appended to the destination series in place.

Example:

a = {1, 2, 3}

b = {10, 11, 12}

append(a, b)

 

Series a contains the values {1, 2, 3, 10, 11, 12}.

Example:

a = {1, 2, 3}

b = {10, 11, 12}

append(a, b, 10*b)

 

Series a contains the values {1, 2, 3, 10, 11, 12, 100, 110, 120}.

Remarks:

Because APPEND appends the series to the destination in place, a result is not returned. See CONCAT to return a series.

 

APPEND is much faster than CONCAT for large series because APPEND operates on the existing series whereas CONCAT creates and assigns a new series.

 

append(a, b) is equivalent to a @= b.

See Also:

@= (APPEND)

CONCAT

SERPAD