[sage-support] Re: Making windows exe

2010-08-13 Thread fitzsnaggle
Thank you for your suggestion. I'll be sure to check out this distribution as its free! On Aug 13, 3:29 am, Harald Schilly wrote: > On 13 Aug., 00:45, fitzsnaggle wrote: > > > I'm trying to create a gui to reconstruct an image from its fourier > > moduli from data taken via usb. > > apart from E

[sage-support] Changing the path of an edge in a graph

2010-08-13 Thread Katie Johnson
I'm working on a graph theory problem where it is very helpful to draw the vertices of the graph in a line and then the edges as arcs between the vertices. I can't seem to figure out how to alter where an edge goes in sage, specifically wanting it to not go in a straight line. Is this easily accom

[sage-support] Finding symbolic solutions

2010-08-13 Thread Rolandb
Hi, Some help is appreciated concerning the following. Suppose P1,P2,P3 are two-variate polynomials. I search for all sets of (P1,P2,P3) such that: i) P1(A,B)+P2(A,B)=P3(A,B) ii) Greatest common denominator P1 and P2 equals 1 [Thus gcd( P1, P2 )=1] iii) P1*P2*P3 can be divided by A*B*(A+B)

Re: [sage-support] Re: Latex rendering in axes_labels not working

2010-08-13 Thread Mani Chandra
Hi, I'm using Archlinux x86_64. Sage version 4.5.2. It was package by a person named 'td123' on AUR. I personally couldn't get Sage to compile because the ATLAS build never succeeded. Output of "uname -a" Linux deathstar 2.6.34-ARCH #1 SMP PREEMPT Wed Aug 4 14:31:56 CEST 2010 x86_64 Intel(R) Core

[sage-support] Re: Latex rendering in axes_labels not working

2010-08-13 Thread Jason Grout
On 8/13/10 3:21 AM, Mani Chandra wrote: Hi, The following example code does not work: plot(sin(x^2), (x, -3, 3), axes_labels=['$x$','$y$']) Traceback (click to the left of this block for traceback) ... TypeError: coercing to Unicode: need string or buffer, dict found But works when I remove th

Re: [sage-support] Sage server setup

2010-08-13 Thread William Stein
On Fri, Aug 13, 2010 at 7:47 AM, Luiz Felipe Martins wrote: > I am having problem setting up a sage notebook server. I am following Dan > Drakes's instructions. > > My system runs Ubuntu 10.04, and I am using Sage 4.5.2. I tried the setup > both from  binary and compiled sages, with the same resul

[sage-support] Error on startup after installation

2010-08-13 Thread spaecmen
Hi, I installed sage 64 bits for ubuntu following this installation procedure: https://help.ubuntu.com/community/SAGE on a dell inspiron 1525 laptop I installed the 64 bits version (sage-4.5.2-linux-64bit- ubuntu_10.04_lts-x86_64-Linux). Sage does not start properly (it never did). I tr

[sage-support] Sage server setup

2010-08-13 Thread Luiz Felipe Martins
I am having problem setting up a sage notebook server. I am following Dan Drakes's instructions. My system runs Ubuntu 10.04, and I am using Sage 4.5.2. I tried the setup both from binary and compiled sages, with the same results. First thing I noticed is that, with the option directory='home/..

[sage-support] Re: Latex rendering in axes_labels not working

2010-08-13 Thread Luis Finotti
On Aug 13, 9:26 am, kcrisman wrote: > This works for me on 4.5.3.alpha0 (and presumably 4.5.2? anyone?) from > the command line and notebook. (...) FWIW, works in 4.5.2 for me... (64-bit, built from source). Luis -- To post to this group, send email to sage-support@googlegroups.com To unsub

[sage-support] Re: Symbolic determinant

2010-08-13 Thread kcrisman
If you do sage: x^a*x^b-x^c*x^d -x^d*x^c + x^b*x^a sage: _.simplify_full() x^(a + b) - x^(c + d) it will work, but apparently this simplification is not built into Pynac, probably for good reasons? - kcrisman On Aug 12, 9:47 pm, vasu wrote: > Hi > Thanks for the suggestions. But there is one i

[sage-support] Re: Latex rendering in axes_labels not working

2010-08-13 Thread kcrisman
Dear Mani, This works for me on 4.5.3.alpha0 (and presumably 4.5.2? anyone?) from the command line and notebook. If you do a web search for your error message, though, it seems like perhaps there is something about your computer that's returning something other than ASCII, hence the call to Unico

[sage-support] Re: Making windows exe

2010-08-13 Thread Harald Schilly
On 13 Aug., 00:45, fitzsnaggle wrote: > I'm trying to create a gui to reconstruct an image from its fourier > moduli from data taken via usb. apart from EPD, you can also try http://www.pythonxy.com/ here is the list of standard packages: http://code.google.com/p/pythonxy/wiki/StandardPlugins#Pyt

[sage-support] Latex rendering in axes_labels not working

2010-08-13 Thread Mani Chandra
Hi, The following example code does not work: plot(sin(x^2), (x, -3, 3), axes_labels=['$x$','$y$']) Traceback (click to the left of this block for traceback) ... TypeError: coercing to Unicode: need string or buffer, dict found But works when I remove the '$' symbols. Anyway to fix this? Mani

Re: [sage-support] Re: Cannot upgrade for 4.5.1 to 4.5.2

2010-08-13 Thread Mitesh Patel
On 08/13/2010 04:37 AM, Mitesh Patel wrote: > On 08/11/2010 04:40 AM, samrat wrote: >> ---> SELinux in in 'enforcing' mode. Initially (after installing) i >> had some problem with SELinux and so as root i had run: chcon -t >> textrel_shlib_t /usr/local/pkgs/sage_4.5/local/lib/libpari-gmp.so.2. >> A

Re: [sage-support] Re: Cannot upgrade for 4.5.1 to 4.5.2

2010-08-13 Thread Mitesh Patel
On 08/11/2010 04:40 AM, samrat wrote: > # sage -upgrade ask > > Downloading packages from http://www.sagemath.org//spkg > Reading package lists... > Traceback (most recent call last): > File "/usr/local/pkgs/sage_4.5/local/bin/sage-update", line 357, in > > do_update() > File "/usr/local/

[sage-support] Re: matrix_plot

2010-08-13 Thread Jason Grout
On 8/12/10 4:10 PM, davidp wrote: Thanks. No problem. I wrote a function to create what I wanted using 'polygon'. It is useful to know that colormaps were not the answer. We just needed to wrap the vmin and vmax parameters in matplotlib. I did this and a bunch of other things and put the