Replaces all missing values in a vector with the specified value.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public Vector<T> ReplaceMissingValues(
Direction fillDirection,
int limit = 1073741824
)
Public Function ReplaceMissingValues (
fillDirection As Direction,
Optional limit As Integer = 1073741824
) As Vector(Of T)
public:
Vector<T>^ ReplaceMissingValues(
Direction fillDirection,
int limit = 1073741824
)
member ReplaceMissingValues :
fillDirection : Direction *
?limit : int
(* Defaults:
let _limit = defaultArg limit 1073741824
*)
-> Vector<'T>
Parameters
- fillDirection
- Type: Extreme.DataAnalysisDirection
Specifies whether missing values should
be replaced by the previous (Forward) or next (Backward) non-missing
values. - limit (Optional)
- Type: SystemInt32
The maximum number of successive missing values
that may be filled.
Return Value
Type:
VectorTThe result.
Reference