Accord.Point.EuclideanNorm C# (CSharp) 메소드

EuclideanNorm() 공개 메소드

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