Click or drag to resize

MatrixTMultiply(VectorT, VectorT) Method

Multiplies this matrix with a vector and places the results into the result vector.

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

Parameters

rightSide  VectorT
The vector to multiply with.
result  VectorT
The result of the multiplication.
Exceptions
ExceptionCondition
ArgumentExceptionIf result.Count != this.RowCount.
ArgumentExceptionIf this.ColumnCount != rightSide.Count.
See Also