Click or drag to resize

MatrixTLeftMultiply(VectorT) Method

Left multiply a matrix with a vector ( = vector * matrix ).

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public Vector<T> LeftMultiply(
	Vector<T> leftSide
)

Parameters

leftSide  VectorT
The vector to multiply with.

Return Value

VectorT
The result of the multiplication.
Exceptions
ExceptionCondition
ArgumentExceptionIf this.RowCount != leftSide.Count.
See Also