[sage-support] autoeval in sagecell

2013-09-07 Thread davidp
I am wondering why only the first cell in the following is automatically evaluated: http://people.reed.edu/~davidp/211/sage/sagecell/tangent_plane.html I have autoeval set to 'True' and notice that if I add 1+1 at the end, it is automatically evaluated. Thanks in advan

[sage-support] Re: 3d graphics display problem

2013-07-30 Thread davidp
Fixed: I removed the .jmol directory from my home directory (allowing a new one to be formed the next time I ran jmol). I thought I had tried that already. On Thursday, July 25, 2013 4:15:37 PM UTC-7, davidp wrote: > > In the following, I expect p+s to be a picture of a plane with th

[sage-support] width of lines in plot legend

2013-07-27 Thread davidp
Is there a way to increase the linewidth of lines appearing in the legend of a plot without changing the linewidth in the plot, itself? -- You received this message because you are subscribed to the Google Groups "sage-support" group. To unsubscribe from this group and stop receiving emails fro

[sage-support] 3d graphics display problem

2013-07-25 Thread davidp
In the following, I expect p+s to be a picture of a plane with the word 'hello' embedded at its center. Instead, I get the word 'hello' in the corner of the frame (where the number -1) might be expected. Further, it prints a number 2 way outside of the frame, and the axes labels are all in th

Re: [sage-support] legends for 3d graphics

2013-07-25 Thread davidp
Cool! On Thursday, July 25, 2013 10:58:56 AM UTC-7, William wrote: > > On Thu, Jul 25, 2013 at 9:16 AM, davidp > > wrote: > > I am using Sage to plot an arrangement of planes in 3-space. Each plane > has > > its own color, and I would like a legend in t

[sage-support] legends for 3d graphics

2013-07-25 Thread davidp
I am using Sage to plot an arrangement of planes in 3-space. Each plane has its own color, and I would like a legend in the plot that associates the equation of each plane with its color. This experiment seems to indicate that legends are not available for 3d graphics: ---

[sage-support] graphs: unexpected behavior from depth_first_search after relabeling

2013-07-20 Thread davidp
sage: g = graphs.CycleGraph(4) sage: list(g.depth_first_search(0)) [0, 3, 2, 1] sage: g.relabel([0,3,2,1]) sage: list(g.depth_first_search(0)) [0, 1, 2, 3] I was expecting to get [0,3,2,1] again after relabeling. Dave -- You received this message because you are subscribed to the Google Groups

[sage-support] Re: sage is filling up my directory with files

2013-04-24 Thread davidp
Yes! This looks right. Thanks, Dave On Wednesday, April 24, 2013 2:30:09 PM UTC-7, John H Palmieri wrote: > > > > On Wednesday, April 24, 2013 8:53:56 AM UTC-7, davidp wrote: >> >> I just installed Sage 5.8 and am running it from the command line. For >> so

Re: [sage-support] Re: sage is filling up my directory with files

2013-04-24 Thread davidp
C-7, Dan Drake wrote: > > I've used attach and load for years without ever encountering this > problem. So there must be something about the code in your > threshold.sage file. Without seeing it, it's not likely we can help you. > > On Wed, 24 Apr 2013 at 10:57AM -0700

[sage-support] Re: sage is filling up my directory with files

2013-04-24 Thread davidp
s behavior. The problem with the 'attach' command seems like a bug to me. Shouldn't these extra files be stored in some tmp file in the sage directory that get erased at the end of the session, or something like that? Thanks, Dave On Wednesday, April 24, 2013 8:53:56 AM UTC-7, d

[sage-support] sage is filling up my directory with files

2013-04-24 Thread davidp
I just installed Sage 5.8 and am running it from the command line. For some reason, it is filling up my directory with what looks like temporary files, e.g., threshold.sageJmarTS.py, threshold.sageR9Gfg9, and on and on. (I attached code contained in a file called 'threshold.sage'. I get th

[sage-support] Re: labels on the frame of a 3d plot

2012-08-31 Thread davidp
I am still interested in this question, in case anyone happens to know the answer. On Thursday, August 18, 2011 4:19:54 PM UTC-7, davidp wrote: > > Is there a way to turn off the labels on the frame in a 3d plot? I > was hoping something like this might work: > > var('x y

[sage-support] Re: ubuntu 12.04 + sage 5.1 + libgfortran

2012-07-28 Thread davidp
I had tried that, then got a further error, so I backtracked. After reading your advice, I tried again, and everything worked. Thanks. On Saturday, July 28, 2012 1:00:57 PM UTC-7, P Purkayastha wrote: > > On 07/29/2012 03:29 AM, davidp wrote: > > I just made a clean insta

[sage-support] ubuntu 12.04 + sage 5.1 + libgfortran

2012-07-28 Thread davidp
- ImportError Traceback (most recent call last) /home/davidp/ in () /usr/local/sage/local/lib/python2.7/site-packages/IPython/Prompts.pyc in __call__(self, arg) 550 551 # and now call a possibly user-defined print mechanism --> 552 manipulated

[sage-support] labels on the frame of a 3d plot

2011-08-18 Thread davidp
Is there a way to turn off the labels on the frame in a 3d plot? I was hoping something like this might work: var('x y') plot3d(sin(x*y),(x,-2,2),(y,-2,2)).show(labels=false) I know that I can set frame=false to get rid of the frame entirely, but that is not what I am looking for. Is there some

[sage-support] Re: drawing a graph that has only some of its edges oriented

2011-06-29 Thread davidp
My solution at the moment is to plot the graph setting save_pos=true. Using the vertex positions determined by the plot, I create arrows for the oriented edges. I then plot the original plot of the graph plus the arrows. Dave On Jun 29, 7:18 pm, davidp wrote: > Hi, > > I have found th

[sage-support] drawing a graph that has only some of its edges oriented

2011-06-29 Thread davidp
Hi, I have found the need to think about "partially oriented" graphs: some edges have an orientation and others do not. It would be natural to draw these with arrows for directed edges and lines for undirected edges. What is the easiest way to do this with Sage? Thanks, Dave -- To post to th

[sage-support] mesh in parametric_plot3d

2010-08-28 Thread davidp
I would like to show my class a parametrized surface with mesh lines (on Monday!). 1. The following code produces no mesh lines: sage: var('x y') sage: parametric_plot3d((x,x^2+y,x*y),(x,0,1),(y, 0,1),plot_points=10,mesh=true) That seems odd to me. 2. The following code produces mesh lines, but

[sage-support] Re: matrix_plot

2010-08-12 Thread davidp
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. Dave On Aug 12, 3:47 pm, William Stein wrote: > On Thu, Aug 12, 2010 at 3:38 PM, davidp wrote: > > I am using Sage Version 4.3, Relea

[sage-support] matrix_plot

2010-08-12 Thread davidp
I am using Sage Version 4.3, Release Date: 2009-12-24. The two plots: matrix_plot(matrix(2,[2,2,3,3]),axes=false,frame=false) matrix_plot(matrix(2,[1,1,3,3]),axes=false,frame=false) look the same to me. I tried various cmaps with the same result. Is there a way to set a cmap so that the plots

[sage-support] Re: missing eigenvectors

2010-08-06 Thread davidp
Thanks a lot! Dave On Aug 6, 7:29 pm, Jason Grout wrote: > On 8/6/10 11:56 AM, davidp wrote: > > > > > Sage has no trouble finding the eigenvectors of the 3x3 matrix below > > but something is wrong in the 4x4 example.  Am I doing something > > silly? > > >

[sage-support] missing eigenvectors

2010-08-06 Thread davidp
Sage has no trouble finding the eigenvectors of the 3x3 matrix below but something is wrong in the 4x4 example. Am I doing something silly? sage: version() 'Sage Version 4.3, Release Date: 2009-12-24' sage: m=matrix(CC,[[1,0,I],[1,1,0],[I,0,1]]) sage: m.eigenvectors_right() [(1.00 + 1

[sage-support] image of a complex function

2010-03-02 Thread davidp
For a class I am teaching, I would like to display an image in the plane---say a png-file--- and show how it is transformed under a complex function f: C --> C. What is the best way to do this? Thanks, Dave -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe fro

[sage-support] sage -t problems with semicolons and line breaks

2009-06-08 Thread davidp
emicolons and does not parse line breaks correctly? (Cutting and pasting the code in the examples into sage produces no errors.) Thanks, Dave | Sage Version 4.0.alpha0, Release Date: 2009-05-15 sage -t "test.py" ****** Fi

[sage-support] Re: problem running sage -t

2009-06-04 Thread davidp
Same problem: sage -t "sandpile.py" Traceback (most recent call last): File "./sandpile.py", line 18, in from sandpile import * File "/home/davidp/math/sandpile/sage/sage-sandpile1.4/sandpile.py", line 167, in class Sandpile(DiGraph): NameError:

[sage-support] Re: fast slicing of matrix

2009-06-02 Thread davidp
9 at 10:10 PM, davidp wrote: > > > I might be going down the wrong path, but is seems like I would want > > to add a > > >         copy_mpz_vector_init > > > function to  vector_integer_sparse_c.pxi that would make a copy of an > > mpz_vector.  Is that overkill?

[sage-support] Re: fast slicing of matrix

2009-06-02 Thread davidp
v + mul*w, but let mul = 0. However add_mpz_vector_init returns the zero vector when mul = 0 ! Dave On Jun 2, 9:06 pm, William Stein wrote: > On Tue, Jun 2, 2009 at 8:45 PM, davidp wrote: > > > I can't figure out how to create a new sparse matrix (see below). > > > S

[sage-support] Re: fast slicing of matrix

2009-06-02 Thread davidp
e "/usr/local/sage-devel/local/lib/python2.5/site-packages/Cython/ Compiler/ExprNodes.py", line 2532, in analyse_types if hasattr(self.function, 'entry') and not self.function.entry.as_variable: AttributeError: 'NoneType' object has no attribute 'as_variable'

[sage-support] problem running sage -t

2009-06-02 Thread davidp
(most recent call last): File "./sandpile.py", line 18, in from sandpile import * File "/home/davidp/math/sandpile/sage/sage-sandpile1.4/sandpile.py", line 167, in class Sandpile(DiGraph): NameError: name 'DiGraph&#

[sage-support] Re: fast slicing of matrix

2009-06-02 Thread davidp
fied sage library code. ++ I might have to actually read the Cython documentation! Dave On Jun 2, 5:43 pm, Jason Grout wrote: > William Stein wrote: > > On Mon, Jun 1, 2009 at 5:16 PM, davidp wrote: > >> I

[sage-support] fast slicing of matrix

2009-06-01 Thread davidp
Is there a fast way to create a submatrix? - sage: version() 'Sage Version 4.0.alpha0, Release Date: 2009-05-15' sage: G = graphs.GridGraph([100,100]) sage: L = G.laplacian_matrix() sage: L 1 x 1 sparse matrix over Integer Ring sage: time

[sage-support] Re: using sphinx to create a manual

2009-05-30 Thread davidp
I guess I figured it out. In the conf.py file: # The reST default role (used for this markup: `text`) to use for all documents. default_role = 'math' --~--~-~--~~~---~--~~ To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this

[sage-support] using sphinx to create a manual

2009-05-30 Thread davidp
I am writing a manual for a Sage package I am developing. It seems natural to use Sphinx/reST. I made an independent installation of Sphinx and eventually realized that to typeset mathematics, I need to write, for example, :math:`\Gamma` instead of Sage's cleaner version: ` \Gamma`. The latter

[sage-support] odd behavior from integral

2009-04-10 Thread davidp
) --- TypeError Traceback (most recent call last) /home/davidp/ in () /usr/local/sage-3.4-Fedora_release_9-i686-Linux/local/lib/python2.5/ site-packages/sage/misc/functional.pyc in integral(x, *args

[sage-support] Re: new cell in worksheet

2009-03-30 Thread davidp
I am running Sage 3.4 under Fedora 10. I am having trouble inserting a cell (of any type) right before a text cell in a worksheet. I have tried the following: 1. Hovering the mouse just above the text cell. 2. Going to a calculation cell just above the text cell and trying shift-click, alt-clic

[sage-support] opening a saved jmol file

2009-03-30 Thread davidp
In the sage notebook, how can I open (display) a file I saved in jmol format? Thanks, Dave --~--~-~--~~~---~--~~ To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support-unsubscr...@googlegroups.

[sage-support] Re: showing graphs with multiple edges

2009-03-19 Thread davidp
have written sage: G = DiGraph({1:{2: 2}, 2:{1:1}}, weighted=True) so that the Laplacian comes out correctly. However, this doesn't help with my problem.) Dave On Mar 19, 6:01 pm, Jason Grout wrote: > davidp wrote: > > Hi, > > > I was a bit surprised by the difference ex

[sage-support] showing graphs with multiple edges

2009-03-19 Thread davidp
Hi, I was a bit surprised by the difference exhibited below: sage: G = DiGraph({1:{2: 2}, 2:{1:1}}) sage: G.show() sage: DiGraph(G.laplacian_matrix()).show() The latter draws multiple edges. Dave --~--~-~--~~~---~--~~ To post to this group, send email to sage-su

[sage-support] resetting vertex labels

2009-03-19 Thread davidp
Suppose G is a DiGraph. Is there a way to change the vertex labels of G so that they are shown when G.show() is called? The method, G.set_vertex() does not seem to do that. Sample code sage: G = DiGraph({1:{2: 2}, 2:{1:1}}) sage: G.show() sage: G.set_vertex(1,4) sage: G.show()

[sage-support] Re: Small groups library is missing

2009-03-16 Thread davidp
please email me. > > Thanks. > > On Mon, Mar 16, 2009 at 6:50 PM, davidp wrote: > > > I have just installed Sage 3.4, database_gap-4.4.10, and > > gap_packages-4.4.10_6.  It seems that I can't access '

[sage-support] Re: Small groups library is missing

2009-03-16 Thread davidp
Traceback (most recent call last) /home/davidp/download/ in () /usr/local/sage-3.4-Fedora_release_9-i686-Linux/local/lib/python2.5/ site-packages/sage/interfaces/gap.pyc in eval(self, x, newlines, strip, **kwds) 477 input_line += ';' 478 --> 479

[sage-support] Re: Sage 3.4 on Fedora: cannot execute binary file

2009-03-14 Thread davidp
Thanks! On Mar 14, 11:19 am, mabshoff wrote: > Ok, there is now a 32 bit FC9 binary - I had it on sage.math all along > and it did get lost in the shuffle when putting things in the various > directories. > > Cheers, > > Michael --~--~-~--~~~---~--~~ To post to th

[sage-support] Re: Sage 3.4 on Fedora: cannot execute binary file

2009-03-14 Thread davidp
Is it strange, then, to list this binary under 32bit: http://sagemath.org/bin/linux/32bit/index.html Also, I don't see a release for i686. Perhaps that will come later. Thanks, Dave On Mar 14, 8:37 am, Jaap Spies wrote: > davidp wrote: > > I am having trouble starting S

[sage-support] Sage 3.4 on Fedora: cannot execute binary file

2009-03-14 Thread davidp
tebook() for the GUI, and license() for information.| -- /home/davidp/download/sage-3.4-Fedora_release_9-x86_64-Linux/local/bin/ sage.bin: /home/davidp/download/sage-3.4-Fedora_release_9-x86_64-Linux/ local/bin/sage.bin:

[sage-support] Re: ideals of points

2009-02-28 Thread davidp
;ll be jumping for joy if/when the Singular people fix the bug > that's breaking the potentially super-useful variety() command. > > On Feb 27, 5:54 am,davidp wrote: > > > Thanks for your response.  I tried what you suggested and got the > > error you anticipated.  So i

[sage-support] Re: ideals of points

2009-02-26 Thread davidp
ef/module-sage.rings.polynomial.multi-po... > > for more details. Problem is, variety() sometimes > fails:http://sagetrac.org/sage_trac/ticket/4622. > > Alex > > On Feb 25, 7:27 am,davidp wrote: > > > Hi, > > > I have the following homogeneous Singula

[sage-support] ideals of points

2009-02-24 Thread davidp
Hi, I have the following homogeneous Singular ideal defining a finite set of points in projective space. I would like to get numerical approximations for these points. sage: S.ring() // characteristic : 0 // number of vars : 4 //block 1 : ordering dp // : names

[sage-support] Singular Hilbert series

2009-02-21 Thread davidp
Hi, Singular's hilb command does not work as expected: sage: R = singular.ring(0,'(x,y,z)','dp') sage: I = singular.ideal(['x^3-y^2*z','z^2-x*y']) sage: I.hilb() `sage90` Could someone please explain this? Thanks, Dave --~--~-~--~~~---~--~~ To post to this group

[sage-support] problem with GraphDatabase

2009-01-30 Thread davidp
eter=5) --- AttributeErrorTraceback (most recent call last) /home/davidp/math/sandpile/sage/sage-sandpile1.2/ in () AttributeError: 'GraphDatabase' object has no attribute 'get_list' sage: === I have also trie

[sage-support] gap documentation

2009-01-20 Thread davidp
I will be teaching abstract algebra this semester and want to introduce my students to Sage and GAP. I have installed gap_packages-4.4.10_6, but I am still having trouble with documentation: -- | Sage Version 3.2.3, Release Date

[sage-support] Re: problem running combinatorial functions

2009-01-08 Thread davidp
patch? I am travelling non-stop between semesters now and have not had time to learn how to do this. Thanks, Dave On Jan 7, 6:06 pm, mabshoff wrote: > On Jan 7, 3:38 pm, davidp wrote: > > Hi Dave, > > > Oops.  I take back my last post.  Running Sage 3.2.2, I got the &g

[sage-support] Re: problem running combinatorial functions

2009-01-07 Thread davidp
ot;)) File "", line 1 [ [ 1, 2 ], [ 1, 3 ], [ 1, 4 ], [ 2, 3 ], [ 2, 4 ], [ 3, 4 ] ] gap> ^ SyntaxError: invalid syntax Thanks for any s

[sage-support] Re: problem running combinatorial functions

2009-01-04 Thread davidp
Thanks. By problem went away with Sage 3.2.2. Dave On Dec 27 2008, 10:55 am, mabshoff wrote: > On Dec 27, 9:11 am,DavidPerkinson wrote: > > Hi Dave, > > > > > Here is a typical error when I try to run a combinatorial function: > > > sage: combinations([1,2],3) > > -