SeriesZip Method

Combines the common sufix of two time series.

Definition

Namespace: Austra.Library
Assembly: Austra.Library (in Austra.Library.dll) Version: 2.5.0+d1268756e036101f601080f153b3997e72fc912d
C#
public Series Zip(
	Series other,
	Func<double, double, double> zipper
)

Parameters

other  Series
Second series to combine.
zipper  FuncDouble, Double, Double
The combining function.

Return Value

Series
The combining function applied to each pair of items.

See Also