Adds the scaled product of two matrices to another matrix.
Namespace: Extreme.Mathematics.GenericAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.17114.0)
protected virtual Matrix<T> MultiplyAndAddAsLeftFactorCore(
Matrix<T> left,
T factor,
TransposeOperation leftOperation,
Matrix<T> rightFactor,
TransposeOperation rightOperation,
Matrix<T> result
)
Protected Overridable Function MultiplyAndAddAsLeftFactorCore (
left As Matrix(Of T),
factor As T,
leftOperation As TransposeOperation,
rightFactor As Matrix(Of T),
rightOperation As TransposeOperation,
result As Matrix(Of T)
) As Matrix(Of T)
protected:
virtual Matrix<T>^ MultiplyAndAddAsLeftFactorCore(
Matrix<T>^ left,
T factor,
TransposeOperation leftOperation,
Matrix<T>^ rightFactor,
TransposeOperation rightOperation,
Matrix<T>^ result
)
abstract MultiplyAndAddAsLeftFactorCore :
left : Matrix<'T> *
factor : 'T *
leftOperation : TransposeOperation *
rightFactor : Matrix<'T> *
rightOperation : TransposeOperation *
result : Matrix<'T> -> Matrix<'T>
override MultiplyAndAddAsLeftFactorCore :
left : Matrix<'T> *
factor : 'T *
leftOperation : TransposeOperation *
rightFactor : Matrix<'T> *
rightOperation : TransposeOperation *
result : Matrix<'T> -> Matrix<'T>
Parameters
- left
- Type: Extreme.Mathematics.GenericMatrixT
The left operand of the addition. - factor
- Type: T
The scale factor for the matrix-matrix product. - leftOperation
- Type: Extreme.MathematicsTransposeOperation
The operation to be performed on this matrix before multiplying. - rightFactor
- Type: Extreme.Mathematics.GenericMatrixT
The right operand of the multiplication. - rightOperation
- Type: Extreme.MathematicsTransposeOperation
The operation to be performed on rightFactor before multiplying. - result
- Type: Extreme.Mathematics.GenericMatrixT
The matrix that is to hold the result. May be .
Return Value
Type:
MatrixTThe sum of
left with
factor times the
product of this matrix transformed as specified by
leftOperation
with
rightFactor transformed as specified by
rightOperation.
Numerical Libraries
Supported in: 5.x
Reference