eyeIdentity matrix
eyeeye(n)n should be real non-negative integer.n-by-n identity matrix.nan nor ±inf as input argument.eye(m,n)m and n should be real non-negative integers, not equal to nan nor ±inf.m-by-n matrix.m < n, the first m columns form an identity matrix, while the last n - m columns contain only zeros.m > n, the first n rows form an identity matrix, while the last m - n rows contain only zeros.eye([m,n])eye(m,n) above.