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

Norm2() public static method

Returns the maximum singular value of the given matrix.
public static Norm2 ( this a ) : double
a this
return double
        public static double Norm2(this double[,] a)
        {
            return new SingularValueDecomposition(a, false, false).TwoNorm;
        }