[sage-support] Re: keyboard azerty qwerty

2008-05-18 Thread Hector Villafuerte
ve that problem? > > cu > > Pierre Hello Pierre, I've been in a similar situation because I use the Dvorak keyboard layout. You can change the layout in Linux using the loadkeys command, like this: loadkeys /usr/share/keymaps/i386/dvorak/dvorak.map.gz The A

[sage-support] Re: How do I bring points to the front of a plot?

2008-05-10 Thread Hector Villafuerte
red') for k in srange(0,2*pi,pi/4)]) sage: (p1+p0).show(aspect_ratio=1) sage: (p0+p1).show(aspect_ratio=1) Some of the more knowledgeable users might want to comment on this. Best, -- Hector > If I missed something, please, point me to the docs.

[sage-support] Re: random questions

2008-04-29 Thread Hector Villafuerte
te-packages', '/var/lib/python-support/python2.5'] Best, -- Hector --~--~-~--~~~---~--~~ 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

[sage-support] Re: How to tell the installation script of setup for Sage not to installed python packages

2008-04-25 Thread Hector Villafuerte
On Fri, Apr 25, 2008 at 7:27 PM, Mike Hansen <[EMAIL PROTECTED]> wrote: > > Sage uses Python 2.5 while your system installation looks like 2.4. > > --Mike Thanks Mike! Upgrading to Python 2.5 did the trick. Best, -- Hector --~--~-~--~~~---~-

[sage-support] Re: How to tell the installation script of setup for Sage not to installed python packages

2008-04-25 Thread Hector Villafuerte
On Fri, Apr 25, 2008 at 7:20 PM, Hector Villafuerte <[EMAIL PROTECTED]> wrote: > On Wed, Apr 2, 2008 at 6:36 AM, William Stein <[EMAIL PROTECTED]> wrote: > [...] > > > By the way, you can modify sys.path in Sage so that it's possible > > to use your exist

[sage-support] Re: How to tell the installation script of setup for Sage not to installed python packages

2008-04-25 Thread Hector Villafuerte
pgvb /usr/lib/python2.4/site-packages/yapgvb/__init__.py:20: RuntimeWarning: Python C API version mismatch for module _yapgvb: This Python has API version 1013, module _yapgvb has version 1012. from _yapgvb import * Any ideas? Best, -- Hector --~--~-~--~~~---~--~~

[sage-support] Re: Trigonometric identities

2008-04-23 Thread Hector Villafuerte
On Wed, Apr 23, 2008 at 9:39 AM, William Stein <[EMAIL PROTECTED]> wrote: > > On Wed, Apr 23, 2008 at 8:34 AM, Hector Villafuerte <[EMAIL PROTECTED]> > wrote: > > > > Hi, > > I haven't been able to 'expand' trigonometric functions i

[sage-support] Trigonometric identities

2008-04-23 Thread Hector Villafuerte
Hi, I haven't been able to 'expand' trigonometric functions in Sage using identities such as: sin(x + y) = sin(x)*cos(y) + sin(y)*cos(x) Is this currently implemented? Thanks in advance, -- Hector --~--~-~--~~~---~--~~ To post to this group, sen

[sage-support] Documentation with several entries

2008-04-22 Thread Hector Villafuerte
ither the Notebook or the command line. Any ideas? Thanks! -- Hector --~--~-~--~~~---~--~~ 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

[sage-support] Re: matlab-like 'whos' function in SAGE notebook interface?

2008-04-17 Thread Hector Villafuerte
On Thu, Apr 17, 2008 at 11:53 AM, William Stein <[EMAIL PROTECTED]> wrote: [...] > In Sage the function is show_identifiers(). [...] Oh, I misunderstood the question then... my bad. Thanks William, -- Hector --~--~-~--~~~---~--~~ To post to this gr

[sage-support] Re: matlab-like 'whos' function in SAGE notebook interface?

2008-04-17 Thread Hector Villafuerte
ibutes of its bases. Otherwise: its attributes, its class's attributes, and recursively the attributes of its class's base classes. Best, -- Hector --~--~-~--~~~---~--~~ To post to this group, send email to sage-support@googlegroup

[sage-support] Re: delay in animation

2008-04-15 Thread Hector Villafuerte
k in [-5..5]], xmin=-5, xmax=5) sage: a.show() sage: a.show(delay=100) Best, -- Hector > Could it be the case that my SAGE is not on the PATH? I'm running SAGE > using vmware on a window machine. --~--~-~--~~~---~--~~ To post to this group, send email to sage

[sage-support] Re: Use Sage, not PowerPoint

2008-04-11 Thread Hector Villafuerte
2008/4/11 William Stein <[EMAIL PROTECTED]>: [...] > Please click on "Edit" instead of "Text", then paste the result > into an Email so we can more easily try out your demo. [...] Sorry about that. I published it in sagenb.org instead: https://www.sagenb.org/h

[sage-support] Use Sage, not PowerPoint

2008-04-11 Thread Hector Villafuerte
ching them and using html. It helps readability to use %hide as well. See attached sample to get a clearer idea, as you practice your Spanish ;) Best, -- Hector sage: %hide sage: %latex sage: {\Large Lineas de Transmision} sage: %hide sage: %latex sage: Algunas ideas generales importantes:

[sage-support] Re: Saving plots (2D and 3D)

2008-04-10 Thread Hector Villafuerte
liam! Just for the record, this workaround is functional just form Sage terminal, not Sage notebook. -- Hector --~--~-~--~~~---~--~~ To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For

[sage-support] Saving plots (2D and 3D)

2008-04-10 Thread Hector Villafuerte
I (as reached from Sage terminal), but the idea is to be able to script this. Thanks! -- Hector sage: p = point([(k,k^2) for k in [0..10]]) sage: p.save(DATA+'plot2d.png') sage: type(p) sage: p = point3d([(k,k^2,0) for k in [0..10]], size=5) sage: p.save(DATA+'plot3d-1.png'

[sage-support] Transverse wave and animate in 3D

2008-04-09 Thread Hector Villafuerte
, size=3, viewer='tachyon') ... p1 = point3d([(k,0,sin(k+j)) for k in K], size=3, viewer='tachyon', color='red') ... P = p0 + p1 ... V.append(P) sage: a = animate(V) sage: a.show() Any ideas? Thanks in advance, -- Hector --~--~-~--~~

[sage-support] Re: About list_plot3d behavior

2008-04-06 Thread Hector Villafuerte
On Sun, Apr 6, 2008 at 8:43 PM, William Stein <[EMAIL PROTECTED]> wrote: > > On Sun, Apr 6, 2008 at 7:23 PM, Hector Villafuerte <[EMAIL PROTECTED]> wrote: > > > > Hi, > > Current behavior for list_plot3d is "A 3-dimensional plot of a surface &

[sage-support] About list_plot3d behavior

2008-04-06 Thread Hector Villafuerte
ats.uwo.ca/computing/MatLab/rptimages/randu-html-0-hg.png Is there a way to do this is Sage? Thanks! -- Hector --~--~-~--~~~---~--~~ To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For mo

[sage-support] PDE and Finite Element methods

2008-04-02 Thread Hector Villafuerte
71e26 Thanks in advance for any pointers! -- Hector --~--~-~--~~~---~--~~ 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.googl

[sage-support] solve() behavior

2008-03-26 Thread Hector Villafuerte
b)/a], phi) --- Traceback (most recent call last) /Users/hector/sage/ in () /Users/hector/sage/local/lib/python2.5/site-packages/sage/calculus/equations.py in solve(f, *args, **kwds) 1215 s = m.solve(args) 1216 except: -> 1217 raise ValueError, "Unable to s

[sage-support] Re: Embed arbitrary images in notebook

2008-03-25 Thread Hector Villafuerte
Now the image is part of you worksheet and you can share it. I hope that helps. Best, -- Hector --~--~-~--~~~---~--~~ To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED]

[sage-support] Re: Reserved words

2008-03-06 Thread Hector Villafuerte
On Thu, Mar 6, 2008 at 5:05 PM, David Harvey <[EMAIL PROTECTED]> wrote: > > > On Mar 6, 2008, at 5:56 PM, Hector Villafuerte wrote: ... > > Yep, that's what I meant (reserved words, aka keywords); to expect > > behavior like this: > > > > sage: l

[sage-support] Re: Reserved words

2008-03-06 Thread Hector Villafuerte
a way to reset all system variables back to their defaults. I > > don't remember how to do it, though. > > Use the incredibly hard to remember and cryptically named > "reset" command: > > sage: pi = 5 > sage: pi >

[sage-support] Reserved words

2008-03-06 Thread Hector Villafuerte
#x27; and '' It took me about 10 minutes to finally get that I had previously named a plot as 'pi'! I had shot myself on the foot... sage: pi = list_plot(Xi, pointsize='40', rgbcolor=hue(1), faceted=True) So the question: shouldn't constants lik

[sage-support] Re: Vector fields and Quivers

2008-03-05 Thread Hector Villafuerte
On Tue, Mar 4, 2008 at 12:38 AM, Jason Grout <[EMAIL PROTECTED]> wrote: > > Hector Villafuerte wrote: ... > > So my question: is there a SAGEly way to plot this type of vector fields? > > Thanks in advance! > > There is now! It turned out to be a pretty simp

[sage-support] SAGE, VMware, Mac OS X

2008-02-15 Thread Hector Villafuerte
is: has somebody successfully used SAGE's virtual machine under VMware Fusion? If so, any tips? Thanks in advance, -- Hector --~--~-~--~~~---~--~~ To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to [

[sage-support] Re: diff() Docstring

2008-02-15 Thread Hector Villafuerte
On Fri, Feb 15, 2008 at 6:43 PM, William Stein <[EMAIL PROTECTED]> wrote: > > > On Feb 15, 2008 4:36 PM, Hector Villafuerte <[EMAIL PROTECTED]> wrote: > > > > On SAGE Version 2.9.2, diff's Docstring is: > > > > "If you s

[sage-support] diff() Docstring

2008-02-15 Thread Hector Villafuerte
imes with respect to x." Best, -- Hector --~--~-~--~~~---~--~~ 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.co

[sage-support] Limits and recurrence relations

2008-02-02 Thread Hector Villafuerte
currence converges to: 1/2 + 1/2*sqrt(1 + 4*a); but I still wonder if there's a more SAGEist way to do this. Thanks in advance, -- Hector --~--~-~--~~~---~--~~ To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group,

[sage-support] Re: audio processing

2008-01-21 Thread Hector
Sorry for replying my own email, but I just started tinkering with Python's wave module: http://docs.python.org/lib/module-wave.html I'll try to report my progress. Best, -- Hector On Jan 21, 8:43 pm, "Hector Villafuerte" <[EMAIL PROTECTED]> wrote: > Hi, > I&#

[sage-support] audio processing

2008-01-21 Thread Hector Villafuerte
Thanks in advance! -- Hector --~--~-~--~~~---~--~~ 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] jmol and Camino

2008-01-16 Thread Hector Villafuerte
u would like to know. Best, -- Hector --~--~-~--~~~---~--~~ 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/sa

[sage-support] Re: bug in parametric plot?

2008-01-13 Thread Hector
I also hit this bug while doing this (taken from the "piecewise" documentation): f1 = lambda x:-1 f2 = lambda x:2 f = Piecewise([[(0,pi/2),f1],[(pi/2,pi),f2]]) P = f.plot_fourier_series_partial_sum(15,pi,-5,5) # long time Best, -- Hector On Jan 7, 4:33 pm, "David Joyner&quo

[sage-support] corrupt file?

2007-12-28 Thread Hector Villafuerte
Has anybody had any trouble uncompressing the Ubuntu version of sage-2.9.1? http://sagemath.org/SAGEbin/linux/32bit/sage-2.9.1-linux-ubuntu-32bit-i686-Linux.tar.gz it seems to be corrupt. Thanks in advance. -- Hector --~--~-~--~~~---~--~~ To post to this group