ISparseLinearAlgebraOperations<T>.DotProduct Method

Returns the dot product of a sparse and a dense vector.

Definition

Namespace: Numerics.NET.LinearAlgebra.Implementation
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
T DotProduct(
	int n,
	ReadOnlySpan<T> x,
	ReadOnlySpan<int> indx,
	int m,
	ReadOnlySpan<T> y,
	int yStride
)

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.
indx  ReadOnlySpan<Int32>
Integer array of component indices.
m  Int32
The length of the vector y.
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.
yStride  Int32
The distance between successive elements in y.

Return Value

T

See Also