Identity(N:INT):MAT
the identity matrix
This function returns the NxN identity matrix.
Identity(3); Mat[ [1, 0, 0], [0, 1, 0], [0, 0, 1] ] -------------------------------