Returns the inner product of two vectors.
Namespace: Extreme.Mathematics.ImplementationAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.16312.0)
public abstract TComplex ConjugateDotProduct(
int n,
ArraySlice<TComplex> x,
ArraySlice<TComplex> y
)
Public MustOverride Function ConjugateDotProduct (
n As Integer,
x As ArraySlice(Of TComplex),
y As ArraySlice(Of TComplex)
) As TComplex
public:
virtual TComplex ConjugateDotProduct(
int n,
ArraySlice<TComplex> x,
ArraySlice<TComplex> y
) abstract
abstract ConjugateDotProduct :
n : int *
x : ArraySlice<'TComplex> *
y : ArraySlice<'TComplex> -> 'TComplex
Parameters
- n
- Type: SystemInt32
The number of elements in the vectors
x and y. - x
- Type: Extreme.CollectionsArraySliceTComplex
A reference to a one-dimensional array
containing the elements of the vector x.
- y
- Type: Extreme.CollectionsArraySliceTComplex
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
Type:
TComplex
Numerical Libraries
Supported in: 5.x
Reference