Adds the scaled product of two matrices to another matrix.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public Matrix<T> AddScaledProductInPlace(
T factor,
Matrix<T> leftFactor,
TransposeOperation leftOperation,
Matrix<T> rightFactor,
TransposeOperation rightOperation
)
Public Function AddScaledProductInPlace (
factor As T,
leftFactor As Matrix(Of T),
leftOperation As TransposeOperation,
rightFactor As Matrix(Of T),
rightOperation As TransposeOperation
) As Matrix(Of T)
public:
Matrix<T>^ AddScaledProductInPlace(
T factor,
Matrix<T>^ leftFactor,
TransposeOperation leftOperation,
Matrix<T>^ rightFactor,
TransposeOperation rightOperation
)
member AddScaledProductInPlace :
factor : 'T *
leftFactor : Matrix<'T> *
leftOperation : TransposeOperation *
rightFactor : Matrix<'T> *
rightOperation : TransposeOperation -> Matrix<'T>
Parameters
- factor
- Type: T
The scale factor for the matrix-matrix product. - leftFactor
- Type: Extreme.MathematicsMatrixT
A matrix that acts as the left operand of the multiplication. - leftOperation
- Type: Extreme.MathematicsTransposeOperation
The operation to be performed on leftFactor before multiplying. - rightFactor
- Type: Extreme.MathematicsMatrixT
The right operand of the multiplication. - rightOperation
- Type: Extreme.MathematicsTransposeOperation
The operation to be performed on rightFactor before multiplying.
Return Value
Type:
MatrixTA reference to this matrix, after adding
factor times the
product of
leftFactor transformed as specified by
leftOperation
with
rightFactor transformed as specified by
rightOperation.
Reference