|  |  D.4.20.25 intmat2mons Procedure from librarynormaliz.lib(see  normaliz_lib).
 
Example:Usage:
intmat2mons(intmat M);
Return:
an ideal generated by the monomials which correspond to the exponent
vectors given by the rows of M
Note:
The number of variables in the basering nvars(basering)has to
be at least the number of columnsncols(M), otherwise the
function exits with an error.
is thrown (see  ERROR).
 See also:
 mons2intmat.|  | LIB "normaliz.lib";
ring R=0,(x,y,z),dp;
intmat expo_vecs[3][3] =
2,0,0,
0,2,0,
2,1,3;
intmat2mons(expo_vecs);
==> _[1]=x2
==> _[2]=y2
==> _[3]=x2yz3
 | 
 
 |