How to edit modules to make patches ?
What is the cleanest method to do this, that will make debugging and
testing easier ?
I'm working on the vectorization of subs.
Will make it possible that one can give a list of substitutions for a
variable.
for example,
x=Symbol('x')
e=x**2
a=[1,2,3]
b=e.subs(x,a)
print(b)
will give
[1,4,9]
But this is very easy. What more features are required ?
--
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.