DenseMatrix<T>.PreMultiply Method

Multiplies this matrix on the left by a Matrix<T>.

Definition

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public DenseMatrix<T> PreMultiply(
	Matrix<T> matrix
)

Parameters

matrix  Matrix<T>
The second Matrix<T>.

Return Value

DenseMatrix<T>
A DenseMatrix<T> that is the product of this matrix with matrix.

Exceptions

ArgumentNullExceptionmatrix is null.
DimensionMismatchExceptionThe number of rows of matrix does not match the number of columns in this matrix,

-or-

matrix is not square.

See Also