Comment #9 on issue 2104 by [email protected]: canonical ordering of terms
http://code.google.com/p/sympy/issues/detail?id=2104
My mistake. I had defined a shortcut function to automatically set the 'descending' flag. What I meant was the following:
---- Python 2.7.0 console for SymPy 0.6.7 These commands were executed:
from __future__ import division from sympy import * x, y, z = symbols('xyz') k, m, n = symbols('kmn', integer=True) f, g, h = map(Function, 'fgh')
Documentation can be found at http://sympy.org/ In [1]: latex(x**2+1) Out[1]: $1 + x^{2}$ In [2]: latex(x**2+1,descending=True) Out[2]: $x^{2} + 1$ --- -- 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.
