Click or drag to resize

MatrixTMultiply(VectorT, MatrixT) Operator

Multiplies a Vector and a Matrix.

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 *(
	Vector<T> leftSide,
	Matrix<T> rightSide
)

Parameters

leftSide  VectorT
The vector to multiply.
rightSide  MatrixT
The matrix to multiply.

Return Value

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