Adds the scaled product of two matrices to another matrix.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
protected virtual Matrix<T> MultiplyAndAddAsRightFactorCore(
T factor,
Matrix<T> left,
T productFactor,
Matrix<T> leftFactor,
TransposeOperation leftOperation,
TransposeOperation rightOperation,
Matrix<T> result
)
Protected Overridable Function MultiplyAndAddAsRightFactorCore (
factor As T,
left As Matrix(Of T),
productFactor As T,
leftFactor As Matrix(Of T),
leftOperation As TransposeOperation,
rightOperation As TransposeOperation,
result As Matrix(Of T)
) As Matrix(Of T)
protected:
virtual Matrix<T>^ MultiplyAndAddAsRightFactorCore(
T factor,
Matrix<T>^ left,
T productFactor,
Matrix<T>^ leftFactor,
TransposeOperation leftOperation,
TransposeOperation rightOperation,
Matrix<T>^ result
)
abstract MultiplyAndAddAsRightFactorCore :
factor : 'T *
left : Matrix<'T> *
productFactor : 'T *
leftFactor : Matrix<'T> *
leftOperation : TransposeOperation *
rightOperation : TransposeOperation *
result : Matrix<'T> -> Matrix<'T>
override MultiplyAndAddAsRightFactorCore :
factor : 'T *
left : Matrix<'T> *
productFactor : 'T *
leftFactor : Matrix<'T> *
leftOperation : TransposeOperation *
rightOperation : TransposeOperation *
result : Matrix<'T> -> Matrix<'T>
Parameters
- factor
- Type: T
The scale factor for the left operand of the addition. - left
- Type: Extreme.MathematicsMatrixT
The left operand of the addition. - productFactor
- 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. - rightOperation
- Type: Extreme.MathematicsTransposeOperation
The operation to be performed on this matrix before multiplying. - result
- Type: Extreme.MathematicsMatrixT
The matrix that is to hold the result. May be .
Return Value
Type:
MatrixTThe sum of
left with
factor times the
product of
leftFactor transformed as specified by
leftOperation
with this matrix transformed as specified by
rightOperation.
Reference