Home Online Manual
Top
Back: subrInterred
Forward: hilbPoly
FastBack: inout_lib
FastForward: random_lib
Up: poly_lib
Top: Singular Manual
Contents: Table of Contents
Index: Index
About: About this document

D.2.6.19 newtonDiag

Procedure from library poly.lib (see poly_lib).

Usage:
newtonDiag(f); f a poly

Return:
intmat

Purpose:
compute the Newton diagram of f

Note:
each row is the exponent of a monomial of f

Example:
 
LIB "poly.lib";
ring r = 0,(x,y,z),lp;
poly f = x2y+3xz-5y+3;
newtonDiag(f);
==> 2,1,0,
==> 1,0,1,
==> 0,1,0,
==> 0,0,0