Click or drag to resize

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

Parameters

x  Complex
The vector x.
y  Complex
The vector y.

Return Value

Complex
The dot product of x and y.

Implements

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