Matrix<T>.Scale Rows In Place Method
            
            
            Scales the rows of the matrix by the values specified by a vector.
            
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
    C#
    
 
 
A reference to this instance.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
public Matrix<T> ScaleRowsInPlace(
	Vector<T> factors
)Parameters
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
| Argument | factors is .  | 
| Dimension | The length of factors does not equal the number of rows of the matrix.  | 
See Also
Reference
ScaleRows(Matrix<UTP>, Vector<UTP>)
ScaleRowsInPlace(Vector<T>)