ManagedLinearAlgebraOperations.ConjugateDotProduct Method

Definition

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

Overload List

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

Forms the dot product of a vector.

C#
public override Complex<double> ConjugateDotProduct(
	int n,
	ReadOnlySpan<Complex<double>> x,
	int incx,
	ReadOnlySpan<Complex<double>> y,
	int incy
)

Parameters

n  Int32
The number of elements in the vectors x and y.
x  ReadOnlySpan<Complex<Double>>
A span containing the elements of the vector x.
incx  Int32
The distance between elements in x.
y  ReadOnlySpan<Complex<Double>>
A span containing the elements of the vector y.
incy  Int32
The distance between elements in y.

Return Value

Complex<Double>

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