Managed Linear Algebra Operations.Conjugate Dot Product Method
            
            
            
            Definition
Namespace: Extreme.Mathematics.LinearAlgebra.Implementation
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Overload List
| Conjugate | Returns the inner product of two vectors. | 
| Conjugate | Returns the inner product of two vectors. | 
ConjugateDotProduct(Int32, ArraySlice<Complex<Double>>, ArraySlice<Complex<Double>>)
            Returns the inner product of two vectors.
            
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.