On Tue, Feb 24, 2009 at 10:34 AM, Jaap Spies <j.sp...@hccnet.nl> wrote:
>
> William Stein wrote:
>> Hi Sage Devels, etc.
>
> [...]
>>
>> If you are interested in helping, see the web page, download the
>> newest zip file and start hacking.  If you have something useful to
>> say, respond to this email and join the sage-windows mailing list.
>>
>
> Useful? I downloaded MSVC 2008 pro trial + SP1, installed it on a spare oldish
> computer with XP Home edition and successfully build sage-windows-0.3!
>
> Ready for testing.

Here's something to try:

sage: from sympy import *
sage: x=var('x'); y=var('y')
sage: Plot(x*y*y)

You should get a 3d plot.

Also, try this:

    sage: from pylab import *
    sage: t = arange(0.0, 2.0, 0.01)
    sage: s = sin(2*pi*t)
    sage: P = plot(t, s, linewidth=1.0)
    sage: xl = xlabel('time (s)')
    sage: yl = ylabel('voltage (mV)')
    sage: t = title('About as simple as it gets, folks')
    sage: grid(True)
    sage: savefig('sage.png')

You should get a new file sage.png created that shows the image.

 -- William

--~--~---------~--~----~------------~-------~--~----~
To post to this group, send email to sage-devel@googlegroups.com
To unsubscribe from this group, send email to 
sage-devel-unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/sage-devel
URLs: http://www.sagemath.org
-~----------~----~----~----~------~----~------~--~---

Reply via email to