|   | DistanceEuclidean Method (Double, Double) | 
        
         
               Gets the Euclidean distance between two points.
             
 
    Namespace: 
   Accord.Math
    Assembly:
   Accord.Math (in Accord.Math.dll) Version: 3.8.0
 Syntax
Syntaxpublic static double Euclidean(
	double x,
	double y
)
Public Shared Function Euclidean ( 
	x As Double,
	y As Double
) As Double
Parameters
- x
- Type: SystemDouble
 The first point x.
- y
- Type: SystemDouble
 The second point y.
Return Value
Type: 
DoubleThe Euclidean distance between x and y.
 Examples
Examples
               For examples, please see 
Euclidean documentation page.
             
 See Also
See Also