Hello everyone! My professor challenged me to show him that non-mathematica applications could do the computing that he needs(I'm trying to convert the college from Mathematica to something open source). He wants a plot of q-gamma with x=.5, and q going from 0 to .99. My code is as follows:
from mpmath import * plot(lambda x: (qgamma(.5,x), (x, 0, .99))) Oddly enough, when I ran it before, it was giving me a NoConvergence error... but now that I'm running it again, it is returning: "TypeError: cannot convert (0.0980873183092639 + 2.10948042864234j) to an integer" What exactly am I doing wrong? I'm sorry, I'm fairly new to all this, to be perfectly honest. But I would really like to help move my college towards open-source stuff, so I didn't want to back down from the challenge. -- You received this message because you are subscribed to the Google Groups "sympy" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sympy. To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/36e0bd49-1919-422b-9975-928a30f5cb27%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
