On 13/08/15 22:56, D. S. McNeil wrote:
While qgamma isn't a "native" function, there's a qgamma implementation in
mpmath, one of the libraries included in Sage, so:

from mpmath import qgamma
plot(lambda x: qgamma(4,x), (x, 2, 10))

should give you a plot of gamma_(q=4).

Nice! And in 3d

sage: var('q,x')
sage: from mpmath import qgamma
sage: plot3d(lambda q,x: qgamma(q,x), (q, 0.5, 3), (x, 2, 10))

Vincent

--
You received this message because you are subscribed to the Google Groups 
"sage-support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-support+unsubscr...@googlegroups.com.
To post to this group, send email to sage-support@googlegroups.com.
Visit this group at http://groups.google.com/group/sage-support.
For more options, visit https://groups.google.com/d/optout.

Reply via email to