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

Frobenius() public static method

Gets the square root of the sum of squares for all elements in a matrix.
public static Frobenius ( this a ) : double
a this
return double
        public static double Frobenius(this double[,] a)
        {
            return Euclidean(a);
        }

Same methods

Norm::Frobenius ( this a ) : float