LinearAlgebraOperations.ConjugateDotProduct<T> Method

Returns the inner product of two vectors.

Definition

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static Complex<T> ConjugateDotProduct<T>(
	int n,
	ArraySlice<Complex<T>> x,
	ArraySlice<Complex<T>> y
)

Parameters

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

Type Parameters

T

Return Value

Complex<T>

See Also