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+44e7797405725ef3cf24b3ff0eba94ce6c649601
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