DensePoly |
Syntax |
DensePoly(R:RING, N:INT):POLY |
Description |
Example |
/**/ Use R ::= QQ[x,y]; /**/ DensePoly(R,3); x^3 + x^2*y + x*y^2 + y^3 /**/ Ws := RowMat([2,3]); /**/ P := NewPolyRing(QQ, ["x","y"], CompleteToOrd(Ws), 1); /**/ Use P; /**/ DensePoly(P,1); // NB standard degree!! y +x |
See Also |