Scales the rows of the matrix by the inverse of the values specified by a vector.
Namespace: Extreme.MathematicsAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.16312.0)
public ComplexMatrix UnscaleRows(
ComplexVector factors
)
Public Function UnscaleRows (
factors As ComplexVector
) As ComplexMatrix
public:
ComplexMatrix^ UnscaleRows(
ComplexVector^ factors
)
member UnscaleRows :
factors : ComplexVector -> ComplexMatrix
Parameters
- factors
- Type: Extreme.MathematicsComplexVector
A ComplexVector containing the scale factors.
Return Value
Type:
ComplexMatrixA reference to this instance.
This method is equivalent to pre-multiplying the matrix with the inverse of a diagonal matrix
with factors as the main diagonal.
This operation is the inverse of ScaleRows(ComplexVector).
Numerical Libraries
Supported in: 5.x, 4.x
Reference