Click or drag to resize

ManagedLinearAlgebraProviderDotProduct(Double, Double) 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 double DotProduct(
	double[] x,
	double[] y
)

Parameters

x  Double
The vector x.
y  Double
The vector y.

Return Value

Double
The dot product of x and y.

Implements

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