Scales the rows and columns of the matrix by the values specified by a vector.
Namespace: Extreme.Mathematics.Generic.LinearAlgebraAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.16312.0)
public SymmetricMatrix<T> UnscaleRowsAndColumns(
Vector<T> factors
)
Public Function UnscaleRowsAndColumns (
factors As Vector(Of T)
) As SymmetricMatrix(Of T)
public:
SymmetricMatrix<T>^ UnscaleRowsAndColumns(
Vector<T>^ factors
)
member UnscaleRowsAndColumns :
factors : Vector<'T> -> SymmetricMatrix<'T>
Parameters
- factors
- Type: Extreme.Mathematics.GenericVectorT
A VectorT containing the scale factors.
Return Value
Type:
SymmetricMatrixTA reference to this instance.
This method is equivalent to pre-multiplying and post-multiplying the matrix with a diagonal matrix
with factors as the main diagonal.
Numerical Libraries
Supported in: 5.x
Reference
SymmetricMatrixTUnscaleRowsAndColumns(VectorT)