Replaces all missing values in each row or column with the previous or next non-missing value.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public Matrix<T> FillMissingValuesInto(
DimensionType dimension,
Direction direction,
Matrix<T> result,
int limit = 1073741824
)
Public Function FillMissingValuesInto (
dimension As DimensionType,
direction As Direction,
result As Matrix(Of T),
Optional limit As Integer = 1073741824
) As Matrix(Of T)
public:
Matrix<T>^ FillMissingValuesInto(
DimensionType dimension,
Direction direction,
Matrix<T>^ result,
int limit = 1073741824
)
member FillMissingValuesInto :
dimension : DimensionType *
direction : Direction *
result : Matrix<'T> *
?limit : int
(* Defaults:
let _limit = defaultArg limit 1073741824
*)
-> Matrix<'T>
Parameters
- dimension
- Type: Extreme.MathematicsDimensionType
The dimension along which values should be filled. - direction
- Type: Extreme.DataAnalysisDirection
Specifies whether missing values should
be replaced by the previous (Forward) or next (Backward) non-missing
values. - result
- Type: Extreme.MathematicsMatrixT
The matrix that is to hold the result.
May be . - limit (Optional)
- Type: SystemInt32
The maximum number of successive missing values
that may be filled.
Return Value
Type:
MatrixTThe result.
Reference