Computes the scaled product of two matrices.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
protected virtual Matrix<T> MultiplyAsLeftCore(
T productFactor,
TransposeOperation leftOperation,
Matrix<T> rightFactor,
TransposeOperation rightOperation,
Matrix<T> result
)
Protected Overridable Function MultiplyAsLeftCore (
productFactor 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>^ MultiplyAsLeftCore(
T productFactor,
TransposeOperation leftOperation,
Matrix<T>^ rightFactor,
TransposeOperation rightOperation,
Matrix<T>^ result
)
abstract MultiplyAsLeftCore :
productFactor : 'T *
leftOperation : TransposeOperation *
rightFactor : Matrix<'T> *
rightOperation : TransposeOperation *
result : Matrix<'T> -> Matrix<'T>
override MultiplyAsLeftCore :
productFactor : 'T *
leftOperation : TransposeOperation *
rightFactor : Matrix<'T> *
rightOperation : TransposeOperation *
result : Matrix<'T> -> Matrix<'T>
Parameters
- productFactor
- 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.MathematicsMatrixT
The right operand of the multiplication. - rightOperation
- Type: Extreme.MathematicsTransposeOperation
The operation to be performed on rightFactor before multiplying. - result
- Type: Extreme.MathematicsMatrixT
The matrix that is to hold the result. May be .
Return Value
Type:
MatrixTproductFactor times the
product of this matrix transformed as specified by
leftOperation
with
rightFactor transformed as specified by
rightOperation.
Reference