|  |  D.4.20.24 mons2intmat Procedure from librarynormaliz.lib(see  normaliz_lib).
 
Example:Usage:
mons2intmat(ideal I);
Return:
Returns the intmat whose rows represent the leading exponents of the
(non-zero) elements of I. The length of each row is nvars(basering).
 See also:
 intmat2mons.|  | LIB "normaliz.lib";
ring R=0,(x,y,z),dp;
ideal I=x2,y2,x2yz3;
mons2intmat(I);
==> 2,0,0,
==> 0,2,0,
==> 2,1,3 
 | 
 
 |