Matrix<T>.UnscaleRowsCore Method

Unscales the rows of the matrix by the reciprocal of the values specified by a vector.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
protected virtual Matrix<T> UnscaleRowsCore(
	Vector<T> factors,
	Matrix<T> result
)

Parameters

factors  Vector<T>
A vector containing the scale factors.
result  Matrix<T>
The matrix that is to hold the result. May be null.

Return Value

Matrix<T>
A reference to this instance.

Remarks

This method is equivalent to pre-multiplying the matrix with a diagonal matrix with factors as the main diagonal.

Exceptions

ArgumentNullExceptionfactors is .
DimensionMismatchException The length of factors does not equal the number of rows of the matrix.

See Also