Vector<T>.ReplaceMissingValues(Direction, Int32) Method

Replaces all missing values in a vector with the specified value.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public Vector<T> ReplaceMissingValues(
	Direction fillDirection,
	int limit = 1073741824
)

Parameters

fillDirection  Direction
Specifies whether missing values should be replaced by the previous (Forward) or next (Backward) non-missing values.
limit  Int32  (Optional)
The maximum number of successive missing values that may be filled.

Return Value

Vector<T>
The result.

See Also