MatrixTMultiply(MatrixT, VectorT) Operator |
Multiplies a Matrix and a Vector.
Namespace: Altaxo.Calc.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static Vector<T> operator *(
Matrix<T> leftSide,
Vector<T> rightSide
)
Parameters
- leftSide MatrixT
- The matrix to multiply.
- rightSide VectorT
- The vector to multiply.
Return Value
VectorTThe result of multiplication.
Exceptions See Also