Click or drag to resize

MatrixTDoLeftMultiply Method

Left multiply a matrix with a vector ( = vector * matrix ) and place the result in the result vector.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
protected void DoLeftMultiply(
	Vector<T> leftSide,
	Vector<T> result
)

Parameters

leftSide  VectorT
The vector to multiply with.
result  VectorT
The result of the multiplication.
See Also