Re: [sage-support] Re: promote Sage on python success stories

2014-08-27 Thread Joel B. Mohler
of sage mathematica in one package. Joel (ex-sage user; now in a parallel industry) -- You received this message because you are subscribed to the Google Groups sage-support group. To unsubscribe from this group and stop receiving emails from it, send an email to sage-support+unsubscr

[sage-support] Re: Reading CSV Files From Databases

2009-10-29 Thread Joel B. Mohler
Ave Jack,McDonald,Spring St sage: import csv sage: m=csv.reader(open(thing.csv,r)) sage: for l in m: print l : ['First', 'Last', 'Address'] ['Sam', 'Smith', 'Hillbilly Ave'] ['Jack', 'McDonald', 'Spring St'] http://docs.python.org/library/csv.html -- Joel

[sage-support] Re: Cython editor

2008-10-08 Thread Joel B. Mohler
to indent or dedent. (This is quite similar to your gvim method). -- Joel --~--~-~--~~~---~--~~ To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group

[sage-support] Re: Cython editor

2008-10-08 Thread Joel B. Mohler
On Wednesday 08 October 2008 06:10:16 pm cesarnda wrote: but usually they give 5 spaces instead of 4 That's not the usually that I experience. But, even if it is what your editor does, it is almost certainly configurable. -- Joel --~--~-~--~~~---~--~~ To post

[sage-support] Re: Plotting and constant functions

2008-08-21 Thread Joel B. Mohler
is precisely the (mis-)functionality you are describing. I'm truly mystified by the other responses in this thread. To me, this is an obvious bug... -- Joel --~--~-~--~~~---~--~~ To post to this group, send email to sage-support@googlegroups.com To unsubscribe from

[sage-support] Re: parametric plot bug? and text plotting feature

2008-04-08 Thread Joel B. Mohler
believe that might cover all the wrong things in this thread, but if not, there should probably be more trac tickets. -- Joel --~--~-~--~~~---~--~~ To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to [EMAIL

[sage-support] Re: Y axis range

2008-04-01 Thread Joel B. Mohler
perfect pixel control!). -- Joel --~--~-~--~~~---~--~~ To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/sage-support

[sage-support] Re: Y axis range

2008-04-01 Thread Joel B. Mohler
couldn't believe it was all by accident.) This is why I think this thread right here is quite ironic -- you all suddenly seem to be agreeing with me about margins ... -- Joel --~--~-~--~~~---~--~~ To post to this group, send email to sage-support@googlegroups.com

[sage-support] Re: Y axis range

2008-04-01 Thread Joel B. Mohler
to do this, I for one would be very interested and thankful. You might find that generating tons of plots, then doing tweaking, is harder than you think, but is well worth it. Joel, Are you getting tired yet of people telling you things are harder than you think? :-) It does seem

[sage-support] poly ring printing order

2008-01-18 Thread Joel B. Mohler
: R.term_order() Degree reverse lexicographic term order sage: x+y x + y sage: x^2+1 x^2 + 1 sage: R.x,y=PolynomialRing(QQ,order=deglex) sage: R.term_order() Degree lexicographic term order sage: x+y x + y sage: x^2+1 x^2 + 1 Is this correct operation? -- Joel

[sage-support] Re: install on maxosx 10.4 intel fails

2007-12-03 Thread joel
Dropping the library into /usr/local/lib has done the trick. Thanks for the help guys, its much appreciated. Joel On Dec 1, 4:37 am, William Stein [EMAIL PROTECTED] wrote: On Nov 30, 2007 2:22 PM, Justin C. Walker [EMAIL PROTECTED] wrote: On Nov 30, 2007, at 2:15 AM, mabshoff wrote

[sage-support] Re: install on maxosx 10.4 intel fails

2007-11-30 Thread joel
best to run through the build process properly rather than hacking the tarball. I'll wait for 2.8.15 - the PPC version is running just fine, though rather slower on a 1.2GHz G4 than I expect it will on my Xeon Macpro. Thanks for your time, Joel

[sage-support] install on maxosx 10.4 intel fails

2007-11-29 Thread joel
Installing sage-2.8.13-osx10.4-i386-Darwin.tar.gz fails during untar'ing, with the error tar: sage-2.8.13-i386-Darwin/local/LIB: Cannot create symlink to `lib': File exists Subsequently running sage ends in all sorts of errors - so the missing symlink is an issue. This error occurs on an Intel

[sage-support] Re: install on maxosx 10.4 intel fails

2007-11-29 Thread joel
tested on a case-sensitive disk, this would not show up in testing. Or maybe the LIB link is unused, so the PowerPC version does OK without it, but in the Intel version it is causing the untar'ing to fail. Joel On Nov 29, 11:44 am, mabshoff [EMAIL PROTECTED] dortmund.de wrote: On Nov 29, 12:12

[sage-support] properties for lines in graphs

2007-10-15 Thread Joel B. Mohler
like an easy and natural interface. Is it possible in what's currently coded for plots? I haven't been able to find it. If it's not currently available, would this be a sane feature request for trac? -- Joel --~--~-~--~~~---~--~~ To post to this group, send email

[sage-support] margins on plots saved to files

2007-10-15 Thread Joel B. Mohler
are gigantic (like 20 times larger) compared to similar output from mathematica and I think the reason is the matplotlib puts a bunch of font information into the file. This is annoying since I'm going to ignore all that font information anyhow by using psfrag. Thanks Joel

[sage-support] Re: Matrix multiplication over finite fields

2007-10-09 Thread Joel B. Mohler
matrix over GF(7) only took 4.3 seconds of CPU time using the MTX extension type. Hmm, that's a pretty big improvement over the SAGE time above. I suspect that we will have to work a lot harder than either of our optimizations have so far. -- Joel

[sage-support] symbolic arithmetic term ordering

2007-09-08 Thread Joel B. Mohler
first in increasing order of degree rather than now it prints in decreasing degree order. Is this customizable? I can't find anything about order in calculus.py. thanks Joel --~--~-~--~~~---~--~~ To post to this group, send email to sage-support

[sage-support] Re: 2.8.3.x build problem

2007-09-06 Thread Joel B. Mohler
it is a strange design, but the SCons developers are quite dogmatic about it. -- Joel --~--~-~--~~~---~--~~ To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit

[sage-support] Re: Non-commutative polynomial ring

2007-09-05 Thread Joel B. Mohler
) if you simultaneously substitute x y with compatibly sized matrices, but it seems a little strange to only substitute one of them. -- Joel --~--~-~--~~~---~--~~ To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group

[sage-support] Re: trouble compiling sage-2.8

2007-08-14 Thread Joel B. Mohler
Alex, Did you find a solution for this? I got the same error on my gentoo as well. I see you have later posts which make it appear that you have sage-2.8 installed. -- Joel On Monday 13 August 2007 11:47, Alex Ghitza wrote: Hi, I'm trying to compile sage-2.8 and it breaks down

[sage-support] Re: trouble compiling sage-2.8

2007-08-14 Thread Joel B. Mohler
On Tuesday 14 August 2007 17:58, William Stein wrote: Does using the linbox package posted here work? http://sage.math.washington.edu/home/was/lj/ Download that and do sage -f linbox-20070814.spkg Yes, that appears to fix my problem. Thanks -- Joel

[sage-support] Re: Symbolic rings

2007-05-30 Thread Joel B. Mohler
On Wednesday 30 May 2007 12:14, William Stein wrote: On 5/30/07, Joel B. Mohler [EMAIL PROTECTED] wrote: There is currently no function to clear these, so I just wrote one. The attached patch adds a function clear_vars() that when called removes all 1-letter symbolic variables

[sage-support] Re: Symbolic rings

2007-05-30 Thread Joel B. Mohler
On Wednesday 30 May 2007 14:00, Bobby Moretti wrote: On Wednesday 30 May 2007 12:14, William Stein wrote: On 5/30/07, Joel B. Mohler [EMAIL PROTECTED] wrote: There is currently no function to clear these, so I just wrote one. The attached patch adds a function clear_vars

[sage-support] Re: Is it possible to use SAGE from regular python?

2007-04-30 Thread Joel B. Mohler
with the python on your system, but I see the point that SAGE is pushing the envelope on recent versions of programs. It's the lesser of available evils. -- Joel --~--~-~--~~~---~--~~ To post to this group, send email to sage-support@googlegroups.com To unsubscribe

[sage-support] Re: SAGE TA ?

2007-03-26 Thread Joel B. Mohler
on that product. -- Joel --~--~-~--~~~---~--~~ To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/sage-support URLs

[sage-support] a plotting question

2007-02-10 Thread Joel B. Mohler
find the plotting architecture to be rather charming -- braindead simple to get an output file to insert into latex (far and away my most common use case for such things). Thanks Joel --~--~-~--~~~---~--~~ To post to this group, send email to sage-support

[sage-support] another plotting question

2007-02-10 Thread Joel B. Mohler
for not supporting them... At least it would be easier to code my own with sage. -- Joel --~--~-~--~~~---~--~~ To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group