Click or drag to resize

ManagedLinearAlgebraProviderDotProduct(Single, Single) 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#
public float DotProduct(
	float[] x,
	float[] y
)

Parameters

x  Single
The vector x.
y  Single
The vector y.

Return Value

Single
The dot product of x and y.

Implements

ILinearAlgebraProviderTDotProduct(T, T)
Remarks
This is equivalent to the DOT BLAS routine.
See Also