Re: [sage-devel] Faster matrix input

2010-03-23 Thread Alex Leone
Hi Alberto, I'm currently working on a matrix viewer for the sage notebook (using SVG).  It wouldn't be too difficult to add editing features once it's been integrated with the notebook. http://students.washington.edu/acleone/sage_matrix/  - Alex -- To post to this group, send an email to sage-

[sage-devel] Re: new version of the graph editor

2010-03-23 Thread Rado
Cool. The notebook integration is kinda hacky but works. The python code outputs a bunch of html tag - an iframe with the editor and hidden input tag with the data. The iframe takes it from there and reads in the data. Send me an email if you need help with it. Glad it works with Nexus One. On the

[sage-devel] Re: Faster matrix input

2010-03-23 Thread Andrey Novoseltsev
I agree that such a thing would be very convenient. I have found myself always using something like lattice_polytope.read_palp_matrix(r"""4 5 1 0 0 0 1 0 1 0 0 1 0 0 1 0 1 0 0 0 1 1""") for entering matrices since it involves much less typing than usual matrix constructors (except for the functio

[sage-devel] Faster matrix input

2010-03-23 Thread Alberto Ferreira
Hi everyone. I have used sage for some time and it was really useful in calculus and algebra though I made heavy use of it to deal with matrices operations and in my opinion the process of inputting (create/ edit) matrices could be made faster and less error-prone. The standard way to input matric

[sage-devel] Re: Exterior algebras.

2010-03-23 Thread javier
Somebody wrote [1] a Reduce (cf. [2]) interface some time ago. If it works properly one could try to load Bergmann [3] from it. That would give access to plenty of Groebner basis, Hilbert series, Hochschild cohomology and many other ring theoretical methods for big families of noncommutative algebr

Re: [sage-devel] new version of the graph editor

2010-03-23 Thread Ondrej Certik
Hi Rado, On Mon, Mar 22, 2010 at 4:44 PM, Rado wrote: > Thanks to Kevin (one of William's undergrad students), we have some > major improvements to the graph editor. Take it for spin at > http://www.math.uiuc.edu/~rkirov2/js-graph-editor/ (a Sage patch will > follow soon). I have only tested it i

[sage-devel] Re: desolve problems

2010-03-23 Thread ma...@mendelu.cz
On 22 bře, 14:26, YURi KARADZhOV wrote: > desolve(eq,y,ivar=x) > > which is really annoying. And what is worse - we get a wrong answer > > -((a*x - 1)*b*e^(a*x)/a^2 + c*e^(a*x)/a - c)*e^(-a*x) > > but the right answer is > > -((a*x - 1)*b*e^(a*x)/a^2 + c*e^(a*x)/a - _C1)*e^(-a*x) > > where _C1 - a

[sage-devel] Re: desolve problems

2010-03-23 Thread ma...@mendelu.cz
On 22 bře, 14:26, YURi KARADZhOV wrote: > I played around with sage and found some problems with desolve command. > To solve ode diff(y(x),x)+a*y(x)+b*x+c we should first define variables and > functions > > x = var('x') > > a,b,c=var('a b c') > > y=function('y',x) > > eq=diff(y,x)+a*y+b*x+c > >

Re: [sage-devel] maxima-noreadline

2010-03-23 Thread François Bissey
> 2010/3/23 François Bissey : > > Hi, > > Hi, > > > I am trying to find the root of some test failure with the maxima > > interface on the port of sage of Gentoo and I have just read the content > > of maxima-noreadline: > > #!/bin/sh > > SAGE_CLISP_DISABLE_READLINE_HACK="yes"; export > > SAGE_

Re: [sage-devel] maxima-noreadline

2010-03-23 Thread Paulo César Pereira de Andrade
2010/3/23 François Bissey : > Hi, Hi, > I am trying to find the root of some test failure with the maxima interface > on the port of sage of Gentoo and I have just read the content of > maxima-noreadline: > #!/bin/sh > SAGE_CLISP_DISABLE_READLINE_HACK="yes"; export > SAGE_CLISP_DISABLE_READLINE

[sage-devel] Re: Exterior algebras.

2010-03-23 Thread mmarco
Thanks for the code. From what i see, it does not inherit ideals or groebner basis. I will try to take a look at that. -- To post to this group, send an email to sage-devel@googlegroups.com To unsubscribe from this group, send an email to sage-devel+unsubscr...@googlegroups.com For more options

Re: [sage-devel] Re: desolve problems

2010-03-23 Thread David Joyner
On Tue, Mar 23, 2010 at 10:56 AM, yuri.k wrote: > Actually I finished the improvements I mentioned. And even more - I > developed simple type checking and function which return subexpression > of given expression by given symbolic type. Thank you for your work. > > But I still have questions: >

[sage-devel] Bug: Elliptic Curve Point Counting

2010-03-23 Thread Robert Campbell
There is a bug somewhere in the point counting code for elliptic curves. Checked both on Linux/4.2.x and OSX-PowerPC/4.2.1. The bug appears to be either in the PARI ellsea routine or in the SAGE interface to it. With some more time I plan to look further and look for an easy fix (unless someone

[sage-devel] Re: new version of the graph editor

2010-03-23 Thread Pablo Angulo
It worked up to the point where I got some: "Hunk #1 FAILED at 0" and similar errors, with a final "abort: patch failed to apply" Thanks for your help, but it looks like I need to learn more about this mercurial before I proceed. -- To post to this group, send an email to sage-devel@googlegroups.

[sage-devel] Re: new version of the graph editor

2010-03-23 Thread Rado
The only way I know is (I am kinda new to all this): 1) unzip sagenb in spkg/standard 2) go to the subfolder containing setup.py 3) SAGEPATH\sage -python setup.py develop 4) hg patch *patchname* hope that helps. Rado On Mar 23, 9:07 am, Pablo Angulo wrote: > Well, it's not done. I found some s

Re: [sage-devel] Re: Parents with a natural action on a space

2010-03-23 Thread Robert Bradshaw
On Mar 23, 2010, at 12:12 AM, Georg S. Weber wrote: On 23 Mrz., 00:08, "Nicolas M. Thiery" wrote: On Wed, Mar 17, 2010 at 05:58:59PM -0700, Alec Mihailovs wrote: Dan Bump recently raised the issue that the `lattice` method for Weyl groups is badly named. I agree, but the issue is more genera

[sage-devel] Re: desolve problems

2010-03-23 Thread yuri.k
Actually I finished the improvements I mentioned. And even more - I developed simple type checking and function which return subexpression of given expression by given symbolic type. But I still have questions: 1. Is there an easy way to check if some class belongs to package in python? 2. Where s

[sage-devel] Re: new version of the graph editor

2010-03-23 Thread Pablo Angulo
Well, it's not done. I found some source files but they're not the ones the system is using. I'd appreciate your help for applying the patch -- To post to this group, send an email to sage-devel@googlegroups.com To unsubscribe from this group, send an email to sage-devel+unsubscr...@googlegroups

[sage-devel] Re: new version of the graph editor

2010-03-23 Thread Pablo Angulo
It's done, I just had to change to the right directory -- To post to this group, send an email to sage-devel@googlegroups.com To unsubscribe from this group, send an email to sage-devel+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/sage-devel U

[sage-devel] Re: new version of the graph editor

2010-03-23 Thread Pablo Angulo
Hello, I'd like to review this patch, but I don't know how to apply patches to sagenb: can you give me a link? Thanks -- To post to this group, send an email to sage-devel@googlegroups.com To unsubscribe from this group, send an email to sage-devel+unsubscr...@googlegroups.com For more

[sage-devel] Re: why Sage 4.3.4 is broken on Fedora and openSUSE

2010-03-23 Thread Dr David Kirkby
On Mar 23, 9:11 am, Dima Pasechnik wrote: > a self-contained Sage package for Windows/Cygwin would anyway include > much more stuff than such a package for Unix... > > If on the other hand one goes for having Sage installed on a working > installation of Cygwin (which is much more realistic opti

[sage-devel] Re: t2.math binary for Sage 4.3.4 - no scipy*.so in there

2010-03-23 Thread Dr David Kirkby
On Mar 22, 2:04 pm, Dima Pasechnik wrote: > actually, sage: standard_packages() > says that the following standard spkg's are not installed in a t2 > build of sage-4.3.4 I made. > > ['cddlib-094f.p5', 'flintqs-20070817.p4', 'gfan-0.4plus', > 'moin-1.9.1.p1', 'palp-1.1.p1', 'pil-1.1.6.p2', > 'pol

[sage-devel] maxima-noreadline

2010-03-23 Thread François Bissey
Hi, I am trying to find the root of some test failure with the maxima interface on the port of sage of Gentoo and I have just read the content of maxima-noreadline: #!/bin/sh SAGE_CLISP_DISABLE_READLINE_HACK="yes"; export SAGE_CLISP_DISABLE_READLINE_HACK exec "$SAGE_LOCAL"/bin/maxima "$@" --

[sage-devel] Re: why Sage 4.3.4 is broken on Fedora and openSUSE

2010-03-23 Thread Dima Pasechnik
a self-contained Sage package for Windows/Cygwin would anyway include much more stuff than such a package for Unix... If on the other hand one goes for having Sage installed on a working installation of Cygwin (which is much more realistic option), I see no harm in requiring system-supplied libico

Re: [sage-devel] Re: atan2 throws "divide by zero"

2010-03-23 Thread Burcin Erocal
Hi Greg, On Mon, 22 Mar 2010 15:47:54 -0700 (PDT) G B wrote: > Burcin-- > > Now that I've managed to divide the discussion between two groups, I > should try to help organize the mess I made. > > Ondrej mentioned in the sage-support discussion that he's opened > ticket 8564. Unfortunately I d

[sage-devel] Re: Parents with a natural action on a space

2010-03-23 Thread Georg S. Weber
On 23 Mrz., 00:08, "Nicolas M. Thiery" wrote: > On Wed, Mar 17, 2010 at 05:58:59PM -0700, Alec Mihailovs wrote: > > > Dan Bump recently raised the issue that the `lattice` method for Weyl > > > groups is badly named. I agree, but the issue is more general. Hence, > > > here is a call for good na