Adds the product of two matrices to this matrix.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public virtual Matrix<T> AddProductInPlace(
Matrix<T> matrix1,
TransposeOperation operation1,
Matrix<T> matrix2,
TransposeOperation operation2
)
Public Overridable Function AddProductInPlace (
matrix1 As Matrix(Of T),
operation1 As TransposeOperation,
matrix2 As Matrix(Of T),
operation2 As TransposeOperation
) As Matrix(Of T)
public:
virtual Matrix<T>^ AddProductInPlace(
Matrix<T>^ matrix1,
TransposeOperation operation1,
Matrix<T>^ matrix2,
TransposeOperation operation2
)
abstract AddProductInPlace :
matrix1 : Matrix<'T> *
operation1 : TransposeOperation *
matrix2 : Matrix<'T> *
operation2 : TransposeOperation -> Matrix<'T>
override AddProductInPlace :
matrix1 : Matrix<'T> *
operation1 : TransposeOperation *
matrix2 : Matrix<'T> *
operation2 : TransposeOperation -> Matrix<'T>
Parameters
- matrix1
- Type: Extreme.MathematicsMatrixT
The first matrix. - operation1
- Type: Extreme.MathematicsTransposeOperation
The operation to apply to matrix1 before multiplying. - matrix2
- Type: Extreme.MathematicsMatrixT
The second matrix. - operation2
- Type: Extreme.MathematicsTransposeOperation
The operation to apply to matrix2 before multiplying.
Return Value
Type:
MatrixTA reference to this matrix.
This method uses the BLAS routine DGEMM.
Reference