Matrix<T>.FillMissingValuesInto(DimensionType, Direction, Matrix<T>, Int32) Method

Replaces all missing values in each row or column with the previous or next non-missing value.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public Matrix<T> FillMissingValuesInto(
	DimensionType dimension,
	Direction direction,
	Matrix<T> result,
	int limit = 1073741824
)

Parameters

dimension  DimensionType
The dimension along which values should be filled.
direction  Direction
Specifies whether missing values should be replaced by the previous (Forward) or next (Backward) non-missing values.
result  Matrix<T>
The matrix that is to hold the result. May be null.
limit  Int32  (Optional)
The maximum number of successive missing values that may be filled.

Return Value

Matrix<T>
The result.

See Also