Function for forming the dot product of self with another vector.

Namespace:  CenterSpace.NMath.Analysis
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
double DotProduct(
	DoubleVector v
)
Visual Basic (Declaration)
Function DotProduct ( _
	v As DoubleVector _
) As Double
Visual C++
double DotProduct(
	DoubleVector^ v
)

Parameters

v
Type: CenterSpace.NMath.Core..::.DoubleVector
Another vector the same length as self.

Return Value

The dot product of self with v.

See Also