Dense Matrix<T, TSlice, TStorage2D>.Pre Multiply Method
Multiplies this matrix on the left by a
Matrix<T>.
Definition
Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
C#
A DenseMatrix<T, TSlice, TStorage2D> that is the product of this matrix with matrix.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
public override DenseMatrix<T> PreMultiply(
Matrix<T> matrix
)
Parameters
Return Value
DenseMatrix<T>A DenseMatrix<T, TSlice, TStorage2D> 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. |