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

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

Returns the maximum column sum of the given matrix.
public static Norm1 ( this a ) : double
a this
Результат double
        public static double Norm1(this double[,] a)
        {
            double[] columnSums = Matrix.Sum(a, 1);
            return Matrix.Max(columnSums);
        }