|
D.15.1.2 monomials
Procedure from library arnold.lib (see arnold_lib).
- Usage:
- monomials(f); f poly
- Return:
- the set of monomials of f as a list
Example:
| LIB "arnold.lib";
ring R=0,(x,y),ds;
poly f = 2*x^2+5*x*y+7*x^7;
monomials(f);
==> [1]:
==> x2
==> [2]:
==> xy
==> [3]:
==> x7
|
|