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

eye() protected static method

Creates an identity matrix.
protected static eye ( int size ) : mat
size int
return mat
        protected static mat eye(int size) { return Matrix.Identity(size); }
        /// <summary>Inverts a matrix.</summary>