Click or drag to resize

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

Parameters

x  Complex32
The vector x.
y  Complex32
The vector y.

Return Value

Complex32
The dot product of x and y.

Implements

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