previous next |
StarPrint |
Syntax |
StarPrint(F:POLY):NULL |
Summary |
print polynomial with *'s for multiplications |
Description |
This function prints the polynomial F with asterisks added to denote multiplications. This function may be useful when cutting and pasting from CoCoA to other mathematical software. |
Example |
Use R ::= Q[x,y]; F := x^3+2xy-y^2; StarPrint(F); 1*x^3+2*x*y-1*y^2 ------------------------------- |