Updates:
Status: Started
Owner: [email protected]
Cc: [email protected]
Labels: Milestone-Release0.7.0 NeedsReview
Comment #4 on issue 2433 by [email protected]: Polys module function poly()
needs gens argument
http://code.google.com/p/sympy/issues/detail?id=2433
Pull request is here: https://github.com/sympy/sympy/pull/373
I think the gens kwarg should do it, i.e.,
Now it can. For users' convenience all polynomial manipulation functions
that support *gens, **args interface allow you to do:
In [1]: poly(1, x)
Out[1]: Poly(1, x, domain='ZZ')
In [2]: poly(1, gens=x)
Out[2]: Poly(1, x, domain='ZZ')
In [3]: poly(1, gens=(x,))
Out[3]: Poly(1, x, domain='ZZ')
In [4]: poly(1, gens=[x])
Out[4]: Poly(1, x, domain='ZZ')
--
You received this message because you are subscribed to the Google Groups
"sympy-issues" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/sympy-issues?hl=en.