Accord.Math.Environments.OctaveEnvironment.size C# (CSharp) Method

size() protected static method

Size of a matrix.
protected static size ( double m ) : double[]
m double
return double[]
        protected static double[] size(double[,] m) { return new double[] { m.GetLength(0), m.GetLength(1) }; }
        /// <summary>Rank of a matrix.</summary>