Accord.Math.Norm.Euclidean C# (CSharp) Метод

Euclidean() публичный статический Метод

Gets the Euclidean norm for a matrix.
public static Euclidean ( this a ) : double
a this
Результат 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[]