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

Norm1() public static method

Returns the maximum column sum of the given matrix.
public static Norm1 ( this a ) : double
a this
return double
        public static double Norm1(this double[,] a)
        {
            double[] columnSums = Matrix.Sum(a, 1);
            return Matrix.Max(columnSums);
        }