DenseMatrix<T>.SubtractProduct 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.0
C#
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

DimensionMismatchException

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

See Also