Matrix<T>.FillMissingValuesInPlace(DimensionType, Direction) Method

Replaces all missing values in each row or column in-place 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> FillMissingValuesInPlace(
	DimensionType dimension,
	Direction direction
)

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.

Return Value

Matrix<T>
A reference to this instance.

See Also