Represents a JAS power series ring: MultiVarPowerSeriesRing.
Methods for multivariate power series arithmetic.
|
__init__(self,
ringstr="",
truncate=None,
ring=None,
cofac=None,
names=None)
Ring constructor. |
source code
|
|
|
__str__(self)
Create a string representation. |
source code
|
|
|
gens(self)
Get the generators of the power series ring. |
source code
|
|
|
inject_variables(self)
Inject generators as variables into the main global namespace |
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,
r)
Get the exponential power series, var r. |
source code
|
|
|
sin(self,
r)
Get the sinus power series, var r. |
source code
|
|
|
cos(self,
r)
Get the cosinus power series, var r. |
source code
|
|
|
tan(self,
r)
Get the tangens power series, var r. |
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
|
|