[sage-support] Re: How Sage LiveCD possible since Sage is 1.5 Gb?

2009-10-13 Thread William Stein
On Tue, Oct 13, 2009 at 9:08 PM, Chris Seberino wrote: > > I saw an old Sage LiveCD on sagemath.org.  I don't understand how this > is possible since Sage unpacked is 1.5 Gb.  A CD can hold around 650Mb > and it must also include the Linux operating system. > > If there is a way please tell me as

[sage-support] Re: Greek alphabet

2009-10-13 Thread Mike Hansen
Hello, On Wed, Oct 14, 2009 at 12:13 PM, Santanu Sarkar wrote: > How can I write alpha, beta etc. in Sage? Typically, one just uses the spelling of those letters. sage: alpha = var('alpha') sage: alpha^2 alpha^2 But, when you go to get their LaTeX code or typeset them, then Sage does the "ri

[sage-support] Re: A fairly basic question about functions and matrices

2009-10-13 Thread Dan Drake
On Tue, 13 Oct 2009 at 10:04PM -0700, Andrew.algebra wrote: > Hi there, I've only just started using sage and I'm still very much > the beginner. > > I'd like to be able to evaluate a number of functions, and have their > output display as a tuple. > > To be more specific, I have 24 functions, ea

[sage-support] Greek alphabet

2009-10-13 Thread Santanu Sarkar
How can I write alpha, beta etc. in Sage? --~--~-~--~~~---~--~~ To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support-unsubscr...@googlegroups.com For more options, visit this group at http://

[sage-support] A fairly basic question about functions and matrices

2009-10-13 Thread Andrew.algebra
Hi there, I've only just started using sage and I'm still very much the beginner. I'd like to be able to evaluate a number of functions, and have their output display as a tuple. To be more specific, I have 24 functions, each of the same 4 variables. I can define a matrix with function entries,

[sage-support] Re: How make worksheet run some code at startup like var("a b c d ... z") ??

2009-10-13 Thread ma...@mendelu.cz
On 14 říj, 06:20, Jason Grout wrote: > Chris Seberino wrote: > > How make worksheet run some code at startup? > > > e.g. var("a b c d ... z") ? > > > Currently my students need to evaluate var("a b c ... z") in every > > worksheet I give them.  It would be nice to hardcode this into > > workshe

[sage-support] Re: How make worksheet run some code at startup like var("a b c d ... z") ??

2009-10-13 Thread Jason Grout
Chris Seberino wrote: > How make worksheet run some code at startup? > > e.g. var("a b c d ... z") ? > > Currently my students need to evaluate var("a b c ... z") in every > worksheet I give them. It would be nice to hardcode this into > worksheets somehow. Any cell starting with %auto will

[sage-support] Re: implicit plotting

2009-10-13 Thread Jason Grout
ma...@mendelu.cz wrote: > > > On 14 říj, 05:51, Jason Grout wrote: >> implicit_plot(x^2+y^2==1, (x,-2, 2), (y,-2, 2), cmap=["red"]) >> > Thanks, I missed this example. > I tried rgbcolor and color option and then tried blindly various > predefined colormaps. I don't think it's anywhere in the

[sage-support] Re: implicit plotting

2009-10-13 Thread ma...@mendelu.cz
On 14 říj, 05:51, Jason Grout wrote: > > implicit_plot(x^2+y^2==1, (x,-2, 2), (y,-2, 2), cmap=["red"]) > Thanks, I missed this example. I tried rgbcolor and color option and then tried blindly various predefined colormaps. Robert Marik --~--~-~--~~~---~--~~ To p

[sage-support] How make worksheet run some code at startup like var("a b c d ... z") ??

2009-10-13 Thread Chris Seberino
How make worksheet run some code at startup? e.g. var("a b c d ... z") ? Currently my students need to evaluate var("a b c ... z") in every worksheet I give them. It would be nice to hardcode this into worksheets somehow. Thanks! Chris --~--~-~--~~~---~--~~ To

[sage-support] How Sage LiveCD possible since Sage is 1.5 Gb?

2009-10-13 Thread Chris Seberino
I saw an old Sage LiveCD on sagemath.org. I don't understand how this is possible since Sage unpacked is 1.5 Gb. A CD can hold around 650Mb and it must also include the Linux operating system. If there is a way please tell me as this would be useful for my less tech savvy Windows users. Sincer

[sage-support] Re: implicit plotting

2009-10-13 Thread Jason Grout
William Stein wrote: > On Tue, Oct 13, 2009 at 7:44 PM, Jason Grout > wrote: >> kcrisman wrote: >>> >>> On Oct 13, 6:05 pm, "ma...@mendelu.cz" wrote: Hello all, is there any other possibility how to plot implicit function than implicitplot? I do not like implicitplot too much

[sage-support] Re: implicit plotting

2009-10-13 Thread William Stein
On Tue, Oct 13, 2009 at 7:44 PM, Jason Grout wrote: > > kcrisman wrote: >> >> >> On Oct 13, 6:05 pm, "ma...@mendelu.cz" wrote: >>> Hello all, is there any other possibility how to plot implicit >>> function than implicitplot? >>> >>> I do not like implicitplot too much, since it is in fact count

[sage-support] Re: sage crashes when run after build

2009-10-13 Thread Don Harter
I was able to rebuild sage and get it running. I am not sure what fixed it. What I did different: installed a lisp package ran the make without the -j processor option and the testing option made more room on my hard drive because of possibly running out of space. --~--~-~--~~-

[sage-support] Re: sage crashes when run after build

2009-10-13 Thread Don Harter
I was able to rebuild sage and get it running. I am not sure what fixed it. What I did different: installed a lisp package ran the make without the -j processor option and the testing option made more room on my hard drive because of possibly running out of space. --~--~-~--~~-

[sage-support] Re: implicit plotting

2009-10-13 Thread Jason Grout
kcrisman wrote: > > > On Oct 13, 6:05 pm, "ma...@mendelu.cz" wrote: >> Hello all, is there any other possibility how to plot implicit >> function than implicitplot? >> >> I do not like implicitplot too much, since it is in fact countourplot >> and it is not easy to set the color (for example).

[sage-support] Re: fipy

2009-10-13 Thread Robert Bradshaw
On Oct 13, 2009, at 7:14 AM, Ajay Rawat wrote: > > My question is can fipy run on sage? > -- I don't see any reason why not (though you would have to install it to see). - Robert --~--~-~--~~~---~--~~ To post to this group,

[sage-support] Re: implicit plotting

2009-10-13 Thread Jason Grout
ma...@mendelu.cz wrote: > Hello all, is there any other possibility how to plot implicit > function than implicitplot? > > I do not like implicitplot too much, since it is in fact countourplot > and it is not easy to set the color (for example). What would you like to do? Jason -- Jason Gr

[sage-support] Re: implicit plotting

2009-10-13 Thread kcrisman
On Oct 13, 6:05 pm, "ma...@mendelu.cz" wrote: > Hello all, is there any other possibility how to plot implicit > function than implicitplot? > > I do not like implicitplot too much, since it is in fact countourplot > and it is not easy to set the color (for example). There is not currently any

[sage-support] implicit plotting

2009-10-13 Thread ma...@mendelu.cz
Hello all, is there any other possibility how to plot implicit function than implicitplot? I do not like implicitplot too much, since it is in fact countourplot and it is not easy to set the color (for example). Thanks Robert Marik --~--~-~--~~~---~--~~ To post to

[sage-support] Re: Request for Ploting

2009-10-13 Thread Jason Grout
Santanu Sarkar wrote: > From some data set I plot the attached eps file using Matlab. > How Can I do same thing using Sage only? Yes, definitely. You might look at examples of what Sage and the underlying plotting system, matplotlib, can do. A gallery of examples is here: http://matplotlib

[sage-support] Re: Request for Ploting

2009-10-13 Thread Robert Bradshaw
On Oct 13, 10:09 am, Santanu Sarkar wrote: > From some data set I plot the attached eps file using Matlab. > How Can I do same thing using Sage only? Sage uses the extension to determine the file type. sage: g = plot(x^3-x, (x,2, -2)) sage: g.save("fig.eps") sage: g.save("fig.pdf") sage: g.save

[sage-support] Request for Ploting

2009-10-13 Thread Santanu Sarkar
>From some data set I plot the attached eps file using Matlab. How Can I do same thing using Sage only? --~--~-~--~~~---~--~~ To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support-unsubscr...@g

[sage-support] Re: [sage-notebook] Re: Sage standalone server problem

2009-10-13 Thread Jason Grout
William Stein wrote: > On Tue, Oct 13, 2009 at 6:44 AM, Minh Nguyen wrote: >> Hi, >> >> On Wed, Oct 14, 2009 at 12:11 AM, Pogon wrote: >>> Hi, >>> I just went to the sage standalone-server (http:// >>> standalone.sagenb.org/) and entered at the prompt: >>> > 1+1 >>> The answer is: >>> >>> Tr

Re: [sage-notebook] Re: [sage-support] Sage standalone server problem

2009-10-13 Thread William Stein
On Tue, Oct 13, 2009 at 6:44 AM, Minh Nguyen wrote: > > Hi, > > On Wed, Oct 14, 2009 at 12:11 AM, Pogon wrote: >> >> Hi, >> I just went to the sage standalone-server (http:// >> standalone.sagenb.org/) and entered at the prompt: >> 1+1 >> >> The answer is: >> >> Traceback (most recent call

[sage-support] Re: Sage ubuntu binary does not work

2009-10-13 Thread William Stein
On Tue, Oct 13, 2009 at 6:06 AM, Pogon wrote: > > Hi, > just downloaded the 4.1.1 binary for ubuntu. > > When executing ./sage I get: > -- > | Sage Version 4.1.1, Release Date: 2009-08-14                       | > | Type notebook

[sage-support] Re: [sage-support]

2009-10-13 Thread William Stein
On Tue, Oct 13, 2009 at 7:15 AM, Mike Hansen wrote: > > Hello, > > On Tue, Oct 13, 2009 at 9:11 PM, Ajay Rawat wrote: >> My question is can fipy run on sage? > > You should just be able to download fipy, extract it, and then run > "sage -python setup.py install" on the setup.py file that comes w

[sage-support] Re: Sage ubuntu binary does not work

2009-10-13 Thread Pogon
No, they don't. I remember using sage 4.0, which just worked out of the box with this current pc configuration. > > Do the suggestions at the following FAQ page help you? > > http://wiki.sagemath.org/faq#Otherquestions > > -- > Regards > Minh Van Nguyen --~--~-~--~~~

[sage-support] Re: [sage-support]

2009-10-13 Thread Ajay Rawat
thanks MIke i'll try that and inform you. On Tue, Oct 13, 2009 at 7:45 PM, Mike Hansen wrote: > > Hello, > > On Tue, Oct 13, 2009 at 9:11 PM, Ajay Rawat > wrote: > > My question is can fipy run on sage? > > You should just be able to download fipy, extract it, and then run > "sage -python setup

[sage-support] Re: [sage-support]

2009-10-13 Thread Mike Hansen
Hello, On Tue, Oct 13, 2009 at 9:11 PM, Ajay Rawat wrote: > My question is can fipy run on sage? You should just be able to download fipy, extract it, and then run "sage -python setup.py install" on the setup.py file that comes with fipy. --Mike --~--~-~--~~~---~--

[sage-support] fipy

2009-10-13 Thread Ajay Rawat
My question is can fipy run on sage? -- Ajay Rawat Kalpakkam, IGCAR - Save Himalayas - --~--~-~--~~---

[sage-support]

2009-10-13 Thread Ajay Rawat
My question is can fipy run on sage? -- Ajay Rawat Kalpakkam, IGCAR - Save Himalayas - --~--~-~--~~--

[sage-support] Re: Sage ubuntu binary does not work

2009-10-13 Thread Minh Nguyen
Hi Victor, On Wed, Oct 14, 2009 at 12:06 AM, Pogon wrote: > What's wrong, and where? Do the suggestions at the following FAQ page help you? http://wiki.sagemath.org/faq#Otherquestions -- Regards Minh Van Nguyen --~--~-~--~~~---~--~~ To post to this group,

[sage-support] Re: Sage standalone server problem

2009-10-13 Thread Minh Nguyen
Hi, On Wed, Oct 14, 2009 at 12:11 AM, Pogon wrote: > > Hi, > I just went to the sage standalone-server (http:// > standalone.sagenb.org/) and entered at the prompt: > >>> 1+1 > > The answer is: > > Traceback (most recent call last): > File "", line 1, in > File "_sage_input_3.py", line 6, in

[sage-support] Sage standalone server problem

2009-10-13 Thread Pogon
Hi, I just went to the sage standalone-server (http:// standalone.sagenb.org/) and entered at the prompt: >> 1+1 The answer is: Traceback (most recent call last): File "", line 1, in File "_sage_input_3.py", line 6, in _sage_const_1 = Integer(1) NameError: name 'Integer' is not define

[sage-support] Sage ubuntu binary does not work

2009-10-13 Thread Pogon
Hi, just downloaded the 4.1.1 binary for ubuntu. When executing ./sage I get: -- | Sage Version 4.1.1, Release Date: 2009-08-14 | | Type notebook() for the GUI, and license() for information.| --

[sage-support] Re: import

2009-10-13 Thread georg grafendorfer
Hi Mikie, put the file with your class definitions (let's say class.py) in whatever directory (let's say /home/mikie/mydir) and add the path of this directory to the SAGE_PATH environment variable, you can do this for example by adding the line export SAGE_PATH=${SAGE_PATH}:/home/mikie/mydir to

[sage-support] Re: Motion & planets

2009-10-13 Thread lutusp
On Oct 12, 1:09 pm, Rolandb wrote: > Hi, I'm interested in the motion of planets around the sun. Before I > 'reinvent the wheel', maybe someone has made a simple model and he/she > is willing to share it? I have a number of packages that do this, not explicitly in Sage, but all with open source

[sage-support] Re: Request

2009-10-13 Thread Simon King
Hi! On Oct 13, 10:27 am, Santanu Sarkar wrote: > Suppose  we want to plot(y vs x)  with data set as follows: > (.1,1), (.2,3), (.4,5), (.5,6). > Also we want find plot with two data set as follows: > (x1,y1), ,(xn,yn)  and  (x1,y'1),..,(x'n,y'n). > > We want to output as .eps fil

[sage-support] Request

2009-10-13 Thread Santanu Sarkar
Suppose we want to plot(y vs x) with data set as follows: (.1,1), (.2,3), (.4,5), (.5,6). Also we want find plot with two data set as follows: (x1,y1), ,(xn,yn) and (x1,y'1),..,(x'n,y'n). We want to output as .eps file. Please help me. --~--~-~--~~~