Accord.Math.Norm.Euclidean C# (CSharp) Method

Euclidean() public static method

Gets the Euclidean norm for a matrix.
public static Euclidean ( this a ) : double
a this
return double
        public static double Euclidean(this double[,] a)
        {
            return (double)Math.Sqrt(SquareEuclidean(a));
        }

Same methods

Norm::Euclidean ( this a, int dimension ) : double[]
Norm::Euclidean ( this a ) : float
Norm::Euclidean ( this a, int dimension ) : float[]