LinearAlgebraOperations<T>.ConjugateDotProduct Method

Definition

Namespace: Numerics.NET.LinearAlgebra.Implementation
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

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 Complex<T> ConjugateDotProduct(
	int n,
	ArraySlice<Complex<T>> x,
	ArraySlice<Complex<T>> y
)

Parameters

n  Int32
 
x  ArraySlice<Complex<T>>
 
y  ArraySlice<Complex<T>>
 

Return Value

Complex<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

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

Forms the dot product of a vector.

C#
public Complex<T> ConjugateDotProduct(
	int n,
	ReadOnlySpanSlice<Complex<T>> x,
	ReadOnlySpanSlice<Complex<T>> y
)

Parameters

n  Int32
 
x  ReadOnlySpanSlice<Complex<T>>
 
y  ReadOnlySpanSlice<Complex<T>>
 

Return Value

Complex<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

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

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

Parameters

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

Return Value

T

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

Forms the dot product of a vector.

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

Parameters

n  Int32
 
zx  ReadOnlySpan<Complex<T>>
 
incx  Int32
 
zy  ReadOnlySpan<Complex<T>>
 
incy  Int32
 

Return Value

Complex<T>

Implements

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

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