> There is a problem:
>
> In [1]: t = Symbol("theta")
>
> In [2]: f = t*x
>
> In [3]: f(x=3,t=9)
> Out[3]: 3⋅θ

Not sure if this is a problem. Sympy knows about 'theta' but not about
t. If you print f you get:

>>> f
theta*x
>>> f(x=3, theta=9)
27

't' is the python variable name assigned, but 'theta' is the symbol
name.

-Lance
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sympy-patches" group.
To post to this group, send email to sympy-patches@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sympy-patches?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to