> If you can provide more examples of what you need, I could probably put
> up patches wrapping that functionality fairly easily/quickly.
>
> As a first step, I suppose you need the nops, and ops functions of
> maple. These will be on the top of my todo list.

For inspiration in sympy we currently have:

In [1]: a = x+x**2+sin(x)

In [2]: a.args
Out[2]:
⎛ 2           ⎞
⎝x , sin(x), x⎠

In [3]: a.args[1]
Out[3]: sin(x)

In [4]: a.args[1].args
Out[4]: (x,)


Ondrej

--~--~---------~--~----~------------~-------~--~----~
To post to this group, send email to sage-devel@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/sage-devel
URLs: http://www.sagemath.org
-~----------~----~----~----~------~----~------~--~---

Reply via email to