Click or drag to resize
SparseVectorDot Method (Double)
Returns the inner product of this vector with the specified array.

Namespace: Algs4Net
Assembly: Algs4Net (in Algs4Net.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public double Dot(
	double[] that
)

Parameters

that
Type: SystemDouble
that the array

Return Value

Type: Double
the dot product between this vector and that array
Exceptions
ExceptionCondition
ArgumentExceptionif the dimensions of the vector and the array are not equal
See Also