HI, I am new to SAGE. After the first compilation there was an error about some missing software package. I installed it and called "make" again after which it finished without errors. Then I tried some of the simple calc examples in ipython and the notebook successfully. Among them also '2+2' in maxima. However, when I tried the following example from the tutorial I neither got any graphics nor any error messages. It just jumped to the next input prompt after a second.
sage: Z = [ (1/2 + n*I/10).zeta() for n in range(70,150) ] sage: Z_x = [w.real() for w in Z] sage: Z_y = [w.imag() for w in Z] sage: maxima.plot_list(Z_x, Z_y) sage: The variables contain lists of numbers as expected. What is wrong? Maybe it did not find the plot program? How can I get the plot? What other tests to check the plotting capability are recommendable in this situation? By the way congratulations for the achievement of SAGE! It really shows off the code glueing capability of python. --~--~---------~--~----~------------~-------~--~----~ To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/sage-support URLs: http://sage.math.washington.edu/sage/ and http://sage.scipy.org/sage/ -~----------~----~----~----~------~----~------~--~---
