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

Replaces all missing values in each row or column of a matrix in-place with the corresponding value from a vector.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public Matrix<T> FillMissingValuesInPlace(
	Vector<T> values,
	DimensionType dimension
)

Parameters

values  Vector<T>
A vector that contains the replacement values.
dimension  DimensionType
The dimension to fill with a single value.

Return Value

Matrix<T>

See Also