On Mon, Dec 3, 2012 at 4:25 PM, Shriramana Sharma <samj...@gmail.com> wrote: > Hey nice! Do I understand correctly this mean that pulling the latest > Git (yes I've become a cloner) will allow me to use IndexedBase > objects like this?
OK now pulled latest git but I understand this is not into trunk yet. BTW from the example in the code: >>> from sympy import Indexed, IndexedBase, Tuple >>> A = IndexedBase('A') >>> eqs = Tuple(A[1] + A[2] - 3, A[1] - A[2] + 1) >>> solve(eqs, eqs.atoms(Indexed)) {A[1]: 1, A[2]: 2} I would like a clarification whether merely: solve(eqs) will or will provide the A[1] A[2] outputs without the eqs.atoms(Indexed) being passed in. I prefer solve() to give them automatically without explicit request. Is that a problem? Thanks. -- Shriramana Sharma -- You received this message because you are subscribed to the Google Groups "sympy" group. To post to this group, send email to sympy@googlegroups.com. To unsubscribe from this group, send email to sympy+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/sympy?hl=en.