Click or drag to resize

VectorMathDotProduct(Int32, Int32) Method

Returns the dot product of vector1 and vector2.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static double DotProduct(
	int[] vector1,
	int[] vector2
)

Parameters

vector1  Int32
The first array.
vector2  Int32
The other array.

Return Value

Double
The dot product (sum of vector1[i]*vector2[i].
See Also