Click or drag to resize

MatrixTMultiply(MatrixT, VectorT) Operator

Multiplies a Matrix and a Vector.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
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

VectorT
The result of multiplication.
Exceptions
ExceptionCondition
ArgumentNullExceptionIf leftSide or rightSide is .
See Also