Dense Matrix<T>.Subtract Product Method
Subtracts the product of two DenseMatrix<T> object
to this matrix.
Definition
Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
A reference to this matrix.
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public DenseMatrix<T> SubtractProduct(
DenseMatrix<T> matrix1,
DenseMatrix<T> matrix2
)
Parameters
- matrix1 DenseMatrix<T>
- The first DenseMatrix<T>.
- matrix2 DenseMatrix<T>
- The second DenseMatrix<T>.
Return Value
DenseMatrix<T>A reference to this matrix.
Remarks
This method uses the BLAS routine DGEMM.
Exceptions
Dimension | The dimensions of any of the three matrices involved in this operation are not compatible. |