Click or drag to resize

VectorMathEuclideanDistance(Double, Double) Method

Returns the Euclidean distance of two vectors, i.e. the L2-norm of the difference of the two vectors.

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

Parameters

vector1  Double
The first vector.
vector2  Double
The other vector.

Return Value

Double
The Euclidean distance of vector1 and vector2.
See Also