Click or drag to resize

VectorTDotProduct Method

Computes the dot product between this vector and another vector.

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

Parameters

other  VectorT
The other vector.

Return Value

T
The sum of a[i]*b[i] for all i.
Exceptions
ExceptionCondition
ArgumentExceptionIf other is not of the same size.
See Also