up
previous
next
WLog
Syntax
WLog(F:POLY):LIST of INT
Summary
weighted list of exponents
Description
This function returns the weighted list of exponents of the leading
term of F, as determined by the first row of the weights matrix.
Thus, if all the weights are 1, this function returns the same thing
as
Log(F)
.
example
Use R ::= Q[x,y];
F := x^2-y;
WLog(F);
[2, 0]
-------------------------------
Use R ::= Q[x,y],Weights(2,3);
F := x^2-y;
WLog(F);
[4, 0]
-------------------------------
See Also