On Sat, Dec 27, 2008 at 12:22 AM, olfa <[email protected]> wrote: > > except for nested functions, could you tell me how can I express in > sympy syntax the other equations of my example such the lists and > arrays?
SymPy is just a Python library, so if you don't know Python yet, you can learn it here: http://docs.python.org/tutorial/ I greatly recommend that, I am sure you'll find it useful. Then you just plug the expressions into our solver, see the examples I posted in my first email. So for example you can compare lists with something like: In [2]: m = [x, y, z+z] In [3]: l = [x, y, 2*z] In [6]: m == l Out[6]: True What is your real application of this? Ondrej --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "sympy" 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?hl=en -~----------~----~----~----~------~----~------~--~---
