Represents a JAS power series ring: UnivPowerSeriesRing.
Methods for univariate power series arithmetic.
|
__init__(self,
ringstr="",
truncate=None,
ring=None,
cofac=None,
name="z")
Ring constructor. |
source code
|
|
|
__str__(self)
Create a string representation. |
source code
|
|
|
gens(self)
Get the generators of the power series ring. |
source code
|
|
|
one(self)
Get the one of the power series ring. |
source code
|
|
|
zero(self)
Get the zero of the power series ring. |
source code
|
|
|
|
|
exp(self)
Get the exponential power series. |
source code
|
|
|
|
|
|
|
|
|
create(self,
ifunc=None,
jfunc=None,
clazz=None)
Create a power series with given generating function. |
source code
|
|
|
|
|
gcd(self,
a,
b)
Compute the greatest common divisor of a and b. |
source code
|
|
|
fromPoly(self,
a)
Convert a GenPolynomial to a power series. |
source code
|
|