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

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

Gets the square root of the sum of squares for all elements in a matrix.
public static Frobenius ( this a ) : double
a this
Результат double
        public static double Frobenius(this double[,] a)
        {
            return Euclidean(a);
        }

Same methods

Norm::Frobenius ( this a ) : float