Vector<T>.ReplaceMissingValues(Vector<T>) Method

Replaces all missing values in the vector with the corresponding element in another vector.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public Vector<T> ReplaceMissingValues(
	Vector<T> values
)

Parameters

values  Vector<T>
The vector of replacement values.

Return Value

Vector<T>
A new vector with the missing values removed.

See Also