|  |  D.4.16.1 id Procedure from librarymodules.lib(see  modules_lib).
 
Example:Usage:
id(n); n integer
Return:
returns the n x n identity matrix, with nongraded free modules for source and target
 |  | LIB "modules.lib";
ring r;
int n=4;
id(n);
==>     {0} {0} {0} {0}
==> {0}   1   0   0   0
==> {0}   0   1   0   0
==> {0}   0   0   1   0
==> {0}   0   0   0   1
==> 
 | 
 
 |