Accord.Point.EuclideanNorm C# (CSharp) Method

EuclideanNorm() public method

Calculate Euclidean norm of the vector comprised of the point's coordinates - distance from (0, 0) in other words.
public EuclideanNorm ( ) : float
return float
        public float EuclideanNorm()
        {
            return (float)System.Math.Sqrt(X * X + Y * Y);
        }
    }