Matrix<T>.Multiply Method
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
Overload List
| Multiply( | Applies the linear operator to a matrix. |
| Multiply( | Applies the linear operator to a vector. |
| Multiply( | Multiplies a Vector<T> by a Matrix<T>. |
Multiply(Matrix<T>, Vector<T>)
public static DenseVector<T> Multiply(
Matrix<T> matrix,
Vector<T> vector
)Parameters
Return Value
DenseVector<T>A vector that is the product of matrix and vector.
Remarks
The number of columns of the matrix matrix must equal the length of the vector vector.
Exceptions
| Argument | matrix is null. -or- vector is null. |
| Dimension | The length of vector does not equal the number of columns in matrix. |