Matrix<T>.AddProductInPlace(Matrix<T>, Matrix<T>) Method

Adds the product of two matrices to this matrix.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public Matrix<T> AddProductInPlace(
	Matrix<T> matrix1,
	Matrix<T> matrix2
)

Parameters

matrix1  Matrix<T>
The first matrix.
matrix2  Matrix<T>
The second matrix.

Return Value

Matrix<T>
A reference to this matrix.

Remarks

This method uses the BLAS routine DGEMM.

Exceptions

ArgumentNullExceptionmatrix1 is null.

-or-

matrix2 is null.

DimensionMismatchException The dimensions of any of the three matrices involved in this operation are not compatible.

See Also