Managed Linear Algebra Operations Of Single.Dot Product Method
Definition
Namespace: Numerics.NET.LinearAlgebra.Implementation
Assembly: Numerics.NET.SinglePrecision (in Numerics.NET.SinglePrecision.dll) Version: 9.0.3
Assembly: Numerics.NET.SinglePrecision (in Numerics.NET.SinglePrecision.dll) Version: 9.0.3
Overload List
Dot | |
Dot | Forms the dot product of two vectors. |
Dot | Forms the dot product of two vectors. |
Dot | Forms the dot product of two vectors. |
Dot | Forms the dot product of two vectors. |
DotProduct(Int32, ReadOnlySpan<Complex<Single>>, Int32, ReadOnlySpan<Complex<Single>>, Int32)
Forms the dot product of two vectors.
public override Complex<float> DotProduct(
int n,
ReadOnlySpan<Complex<float>> x,
int incx,
ReadOnlySpan<Complex<float>> y,
int incy
)
Parameters
- n Int32
- The number of elements in the vectors x and y.
- x ReadOnlySpan<Complex<Single>>
- A span containing the elements of the vector x.
- incx Int32
- The distance between elements in x.
- y ReadOnlySpan<Complex<Single>>
- A span containing the elements of the vector y.
- incy Int32
- The distance between elements in y.
Return Value
Complex<Single>Implements
ILinearAlgebraOperations<T>.DotProduct(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
DotProduct(Int32, ReadOnlySpan<Single>, Int32, ReadOnlySpan<Single>, Int32)
Forms the dot product of two vectors.
public override float DotProduct(
int n,
ReadOnlySpan<float> x,
int incx,
ReadOnlySpan<float> y,
int incy
)
Parameters
- n Int32
- The number of elements in the vectors x and y.
- x ReadOnlySpan<Single>
- A span containing the elements of the vector x.
- incx Int32
- The distance between elements in x.
- y ReadOnlySpan<Single>
- A span containing the elements of the vector y.
- incy Int32
- The distance between elements in y.
Return Value
SingleImplements
ILinearAlgebraOperations<T>.DotProduct(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