LinearAlgebraOperations<T>.ConjugateDotProduct Method

Definition

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

Overload List

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

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

Parameters

n  Int32
The number of elements in the vectors x and y.
x  ArraySlice<T>
A reference to a one-dimensional array containing the elements of the vector x.
y  ArraySlice<T>
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

T

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

Forms the dot product of a vector.

C#
public abstract Complex<T> ConjugateDotProduct(
	int n,
	ArraySlice<Complex<T>> zx,
	ArraySlice<Complex<T>> zy
)

Parameters

n  Int32
 
zx  ArraySlice<Complex<T>>
 
zy  ArraySlice<Complex<T>>
 

Return Value

Complex<T>

Implements

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

Remarks

Further Details:

            jack dongarra, 3/11/78.
            modified 12/3/93, array(1) declarations changed to array(*)
            

Authors: Univ. of Tennessee, Univ. of California Berkeley, Univ. of Colorado Denver, NAG Ltd.

Date: November 2011

See Also