ManagedLinearAlgebraOperations.ConjugateDotProduct Method

Definition

Namespace: Extreme.Mathematics.LinearAlgebra.Implementation
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

ConjugateDotProduct(Int32, ArraySlice<Complex<Double>>, ArraySlice<Complex<Double>>)

Returns the inner product of two vectors.
C#
public override Complex<double> ConjugateDotProduct(
	int n,
	ArraySlice<Complex<double>> x,
	ArraySlice<Complex<double>> y
)

Parameters

n  Int32
The number of elements in the vectors x and y.
x  ArraySlice<Complex<Double>>
A reference to a one-dimensional array containing the elements of the vector x.
y  ArraySlice<Complex<Double>>
A reference to a one-dimensional array containing the elements of the vector y. The elements of y are overwritten with the result.

Return Value

Complex<Double>

Implements

ILinearAlgebraOperations<T>.ConjugateDotProduct(Int32, ArraySlice<T>, ArraySlice<T>)

See Also