Click or drag to resize

ILinearAlgebraProviderTDotProduct Method

Computes the dot product of x and y.

Namespace: Altaxo.Calc.Providers.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
T DotProduct(
	T[] x,
	T[] y
)

Parameters

x  T
The vector x.
y  T
The vector y.

Return Value

T
The dot product of x and y.
Remarks
This is equivalent to the DOT BLAS routine.
See Also