Dense Matrix<T>.Subtract Product Method
Subtracts the product of two DenseMatrix<T> object
to this matrix.
Definition
Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
C#
A reference to this matrix.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
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. |