[sage-support] Re: Sagecell not running in moodle pages

2015-08-17 Thread Sergey Semerikov
Is there any good news on embedding sage cells into Moodle pages? Thanks! Sergey -- 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] Re: Embedding plot3d into a webpage?

2015-08-17 Thread kcrisman
how I can fix error with embedded plot3d examples? Hi! Can you be more specific? Exactly what are you trying, and what is failing? Thanks! -- You received this message because you are subscribed to the Google Groups sage-support group. To unsubscribe from this group and stop

[sage-support] Re: show_identifier() function in Sage Cloud shows pre-defined variables?

2015-08-17 Thread saad khalid
Thank you! I've never actually gotten to work on a ticket, so maybe I'll be able to take a look at this one tonight and see if I can do anything about it. On Sunday, August 16, 2015 at 5:14:17 PM UTC-5, saad khalid wrote: I was following along in the sage tutorial for showing variables:

[sage-support] Re: Plotting a q analogue function as a challenge?

2015-08-17 Thread saad khalid
I see, thank you again! I tried editting bits of your code to see why mine wasn't working. It seems as though the main difference between our code is that you import * whereas I was doing import qgamma. When I run my code with import *, it works for some reason. Would you happen to know why

Re: [sage-support] Re: show_identifier() function in Sage Cloud shows pre-defined variables?

2015-08-17 Thread William Stein
On Mon, Aug 17, 2015 at 7:23 AM, saad khalid saad1...@gmail.com wrote: Thank you! I've never actually gotten to work on a ticket, so maybe I'll be able to take a look at this one tonight and see if I can do anything about it. SageMathCloud isn't part of Sage so you would have to work on the

[sage-support] Re: Embedding plot3d into a webpage?

2015-08-17 Thread paad . ruslan . korniichuk
1. Open page (below) with embedded the Sage Cell Server and run, for example, code *sphere()*. 3dplot does not work. 2. Open https://sagecell.sagemath.org/ and run code *sphere()*. 3dplot is OK. *Example here:* http://www.korniichuk.us.edu.pl/3d.html *HTML code here:* !DOCTYPE HTML html

[sage-support] Re: Plotting a q analogue function as a challenge?

2015-08-17 Thread Dominique Laurain
OK .. what you want is : from mpmath import * plot(lambda q: qgamma(mpf(0.5),mpf(q)), (0, .99)) print sqrt(pi) Bonus (my notation Fq is gammaq function and F is gamma function) : from https://en.wikipedia.org/wiki/Q-gamma_function : lim Fq(x) q-1 = F(x) from