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