Vector<T>.Window<U>(Int32, AggregatorGroup<U>) Method

Returns a new vector that aggregates the values in a sliding window of the specified size.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public Vector<U> Window<U>(
	int size,
	AggregatorGroup<U> aggregator
)

Parameters

size  Int32
The size of the window.
aggregator  AggregatorGroup<U>
The aggregator to apply to each group.

Type Parameters

U
The type of the result of the aggregator.

Return Value

Vector<U>
A new vector, indexed by the index of the first element in the window, and as values the result of applying aggregator to each window.

See Also