Status: Accepted
Owner: asmeurer
Labels: Type-Defect Priority-Medium

New issue 1958 by asmeurer: Bugs with greek letter symbols
http://code.google.com/p/sympy/issues/detail?id=1958

In [13]: f = Function('phi')

In [14]: f
Out[14]: phi

In [15]: f = Symbol('phi_nu')

In [16]: f
Out[16]: φ_nu

In [17]: f(x)
Out[17]: φ_nu(x)

There are two problems here:

First, Function() does not convert phi into the pretty printed φ. As you can see in the last line, this is quite possible (this is automatic conversion from a Symbol to a Function).

Second, phi_nu gives φ_nu instead of φ_ν (there is no small unicode ν, but it should at least give this).

--
You received this message because you are subscribed to the Google Groups 
"sympy-issues" group.
To post to this group, send email to sympy-iss...@googlegroups.com.
To unsubscribe from this group, send email to 
sympy-issues+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sympy-issues?hl=en.

Reply via email to