Dense Matrix<T>.Pre Multiply 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#
A DenseMatrix<T> that is the product of this matrix with matrix.
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public DenseMatrix<T> PreMultiply(
Matrix<T> matrix
)
Parameters
Return Value
DenseMatrix<T>A DenseMatrix<T> that is the product of this matrix with matrix.
Exceptions
Argument | matrix is null. |
Dimension | The
number of rows of matrix does not match
the number of columns in this matrix,
-or- matrix is not square. |