Unscales the rows of the matrix by the reciprocal of the values specified by a vector.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
protected virtual Matrix<T> UnscaleRowsCore(
Vector<T> factors,
Matrix<T> result
)
Protected Overridable Function UnscaleRowsCore (
factors As Vector(Of T),
result As Matrix(Of T)
) As Matrix(Of T)
protected:
virtual Matrix<T>^ UnscaleRowsCore(
Vector<T>^ factors,
Matrix<T>^ result
)
abstract UnscaleRowsCore :
factors : Vector<'T> *
result : Matrix<'T> -> Matrix<'T>
override UnscaleRowsCore :
factors : Vector<'T> *
result : Matrix<'T> -> Matrix<'T>
Parameters
- factors
- Type: Extreme.MathematicsVectorT
A vector containing the scale factors. - result
- Type: Extreme.MathematicsMatrixT
The matrix that is to hold the result. May be .
Return Value
Type:
MatrixTA reference to this instance.
This method is equivalent to pre-multiplying the matrix with a diagonal matrix
with factors as the main diagonal.
Reference