On Jan 30, 2008 5:00 AM, William Stein <[EMAIL PROTECTED]> wrote:
>
>
> On Jan 29, 2008 9:20 AM, Philippe Saade <[EMAIL PROTECTED]> wrote:
> >
> > Hi everybody
> >
> > I need to make some simple drawings in Poincaré disk model of
> > hyperbolic geometry (and some on the hyperboloid model too).
> >
If you do
sage: RealNumber=float
sage: Integer=int
before defining the functions, the ode solver runs dramatically
faster.
This is because the function calls get much cheaper as nothing is
accidentally
in RR or ZZ.
On Jan 29, 11:55 pm, "Fabio Tonti" <[EMAIL PROTECTED]> wrote:
> Would be nice if
Here we go: Sage 2.10.1.rc3 is hopefully the next to last rc.
The release is planned in the next 24 hours. We finally fixed
the GNUTLS issues, elliptic curve improvements (#740), some
Solaris build issues and various bug fixes. What needs to be
done before the release is #1968 (a security fix), al
On Jan 30, 2008 2:55 AM, Fabio Tonti <[EMAIL PROTECTED]> wrote:
> Would be nice if someone posted the Lorenz attractor code on
> planet.sagemath.org!
OK, done here:
http://sagemath.blogspot.com/
it will appear eventually at planet.
>
> For those who don't subscribe to this list...
>
> Fabio
>
On Jan 30, 2008 3:29 AM, Joshua Kantor <[EMAIL PROTECTED]> wrote:
>
> If you do
> sage: RealNumber=float
> sage: Integer=int
>
> before defining the functions, the ode solver runs dramatically
> faster.
> This is because the function calls get much cheaper as nothing is
> accidentally
> in RR or Z
Hi all,
I am a brand-newbie. I tried to install the GAP packages and got an
error.
Sage told me to email this group, so here I am...
I am running Xubuntu ("Feisty") on an HP-Compaq nc4010, in case that
matters.
The tail end of the error follows. Thanks in advance for any help.
Hy Ginsberg
Un
On Jan 30, 3:17 pm, Hy Ginsberg <[EMAIL PROTECTED]> wrote:
> Hi all,
Hi Hy,
> I am a brand-newbie. I tried to install the GAP packages and got an
> error.
> Sage told me to email this group, so here I am...
>
> I am running Xubuntu ("Feisty") on an HP-Compaq nc4010, in case that
> matters.
>
> There should be a file called config.log in
>
> $SAGE_ROOT/spkg/build/gap_packages-4.4.10_3/src/
>
> which should have more info on what went wrong. It could be rather
> large, so it would be best if you upload it somewhere and post a link
> here.
Hi,
isn't that the piece of information that i
On Jan 30, 5:09 pm, Martin Albrecht <[EMAIL PROTECTED]>
wrote:
> > There should be a file called config.log in
>
> > $SAGE_ROOT/spkg/build/gap_packages-4.4.10_3/src/
>
> > which should have more info on what went wrong. It could be rather
> > large, so it would be best if you upload it somewhere
Recently I set up the VMware image to be a class server and from that I
experience, I think that it is still a bit beyond the reach of a
non-unix person to easily set up a good secure sage server. While the
vmware image is an absolutely fantastic base requiring minimal extra
configuration, th
mabshoff wrote:
> Here we go: Sage 2.10.1.rc3 is hopefully the next to last rc.
> The release is planned in the next 24 hours. We finally fixed
> the GNUTLS issues, elliptic curve improvements (#740), some
> Solaris build issues and various bug fixes. What needs to be
> done before the release is
On Jan 30, 6:32 pm, Jaap Spies <[EMAIL PROTECTED]> wrote:
> mabshoff wrote:
> > Here we go: Sage 2.10.1.rc3 is hopefully the next to last rc.
> > The release is planned in the next 24 hours. We finally fixed
> > the GNUTLS issues, elliptic curve improvements (#740), some
> > Solaris build issues
Ted wrote:
> I like the concept of Sage being comprehensive, but how about using a
> more widely-used synonym for the word 'comprehensive' like
> 'universal'?:
>
> Universal Mathematics Computing Environment
I tried using "Universal Mathematics Computing Environment" for a
while but it is to
On Tue, 29 Jan 2008, Bill Hart wrote:
>
> Hi all,
>
> Some of my undergraduate students have pointed out some interesting
> things to me, and I thought sage developers might find them
> interesting.
>
> The first is http://www.projecteuler.net/
>
> It's a list of computational mathematical pro
On Wed, Jan 30, 2008 at 10:13:09AM -0600, Jason Grout wrote:
> Now, for the ncurses part. It seems like it would be very, very nice to
> have a minimal admin menu using ncurses or newt (with the python snack
> module) or dialog. Each of these has a python module, so hopefully it
> should be f
Joel B. Mohler wrote:
> On Wed, Jan 30, 2008 at 10:13:09AM -0600, Jason Grout wrote:
>> Now, for the ncurses part. It seems like it would be very, very nice to
>> have a minimal admin menu using ncurses or newt (with the python snack
>> module) or dialog. Each of these has a python module, so
I agree, I think, that doing the configuration via ncurses would be a
step backwards. People who are not familiar with *nix are most likely
not going to be familiar with managing their computer through text
(curses or not) interfaces.
On Wed, Jan 30, 2008 at 9:29 AM, Joel B. Mohler <[EMAIL PROTEC
Thanks.
I tested this by buying a copy online on the 25th. It was printed 3
days later and just
arrived, carefully packaged, today. Printing quality and binding look good.
No complaints.
On Jan 25, 2008 4:35 AM, Robert Bradshaw <[EMAIL PROTECTED]> wrote:
>
> You can now by a hard copy of the Sage
Thanks, now I have already wasted about 1/2 hour on these, and the
total will surely increase. It reminds me of a recent comic:
http://xkcd.com/356/
ah well...
Marshall
On Jan 30, 12:58 pm, [EMAIL PROTECTED] wrote:
> On Tue, 29 Jan 2008, Bill Hart wrote:
>
> > Hi all,
>
> > Some of my undergr
On Jan 30, 2008 3:09 PM, mhampton <[EMAIL PROTECTED]> wrote:
>
> Thanks, now I have already wasted about 1/2 hour on these, and the
> total will surely increase. It reminds me of a recent comic:
>
> http://xkcd.com/356/
>
> ah well...
When you're done:
http://www.pythonchallenge.com/
I've alwa
Presently, because forall and exists return tuples rather than
booleans, their return value is always True, so they cannot be used as
a predicate, which is very unintuitive given their names. Proposed
solution: optional parameter witness (default: False) that determines
return value type.
Ticket
Hmm... witness is very unintuitive; maybe we can think up a better
name. Also, there are functions in Python which have similar
functionality.
sage: l = [1,2,3]
sage: any([i == 2 for i in l])
True
sage: all([i == 2 for i in l])
False
--Mike
On Jan 30, 2008 2:45 PM, Nils Bruin <[EMAIL PROTECTED
On Jan 30, 2008, at 4:00 AM, mabshoff wrote:
>
> Here we go: Sage 2.10.1.rc3 is hopefully the next to last rc.
> The release is planned in the next 24 hours. We finally fixed
> the GNUTLS issues, elliptic curve improvements (#740), some
> Solaris build issues and various bug fixes. What needs to
On Jan 30, 2:49 pm, "Mike Hansen" <[EMAIL PROTECTED]> wrote:
[...]
> name. Also, there are functions in Python which have similar
> functionality.
>
> sage: l = [1,2,3]
> sage: any([i == 2 for i in l])
> True
> sage: all([i == 2 for i in l])
> False
That's instructive. In that case, forall and ex
Thanks for the report, glad it looks good. I ran into some technical
difficulties with the DVD, but they're sorting them out.
- Robert
On Jan 30, 2008, at 12:40 PM, David Joyner wrote:
>
> Thanks.
> I tested this by buying a copy online on the 25th. It was printed 3
> days later and just
> a
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Hi,
This comes up in the pdf versions of the various documentation files:
the tutorial, the reference manual, the programming manual, the
constructions file.
When you have a long-ish line in a verbatim environment, and it exceeds
the width of the pa
Alex Ghitza wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> Hi,
>
> This comes up in the pdf versions of the various documentation files:
> the tutorial, the reference manual, the programming manual, the
> constructions file.
>
> When you have a long-ish line in a verbatim environm
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Jason Grout wrote:
> Alex Ghitza wrote:
>> -BEGIN PGP SIGNED MESSAGE-
>> Hash: SHA1
>>
>> Hi,
>>
>> This comes up in the pdf versions of the various documentation files:
>> the tutorial, the reference manual, the programming manual, the
>> con
I agree with Nils. I just started using forall and exists and found
it stupid to have to append [0] to get the boolean value. And given
their existence I never looked further to find the python any() and
all() functions.
On 30/01/2008, Nils Bruin <[EMAIL PROTECTED]> wrote:
>
> On Jan 30, 2:49
>This comes up in the pdf versions of the various documentation files:
>the tutorial, the reference manual, the programming manual, the
>constructions file.
>
>When you have a long-ish line in a verbatim environment, and it exceeds
>the width of the page, it gets cut off. For an example (there ar
On Jan 30, 2008 9:43 PM, Alex Ghitza <[EMAIL PROTECTED]> wrote:
>
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> Hi,
>
> This comes up in the pdf versions of the various documentation files:
> the tutorial, the reference manual, the programming manual, the
> constructions file.
>
> When you
On Jan 30, 2008 2:19 PM, Jason Grout <[EMAIL PROTECTED]> wrote:
>
> Joel B. Mohler wrote:
> > On Wed, Jan 30, 2008 at 10:13:09AM -0600, Jason Grout wrote:
> >> Now, for the ncurses part. It seems like it would be very, very nice to
> >> have a minimal admin menu using ncurses or newt (with the py
32 matches
Mail list logo