On Fri, Dec 5, 2008 at 10:12 PM, Jason Grout
<[EMAIL PROTECTED]> wrote:
>
> Jan Groenewald wrote:
>> Hi
>>
>> On Thu, Dec 04, 2008 at 11:22:11AM -0600, Jason Grout wrote:
http://sagenb.org:8000/home/pub/94/ and included some timings there.
>>> Nice.
>>> If you use:
>>> R. = QQ.extension(x^2+1
Jan Groenewald wrote:
> Hi
>
> On Thu, Dec 04, 2008 at 11:22:11AM -0600, Jason Grout wrote:
>>> http://sagenb.org:8000/home/pub/94/ and included some timings there.
>> Nice.
>> If you use:
>> R. = QQ.extension(x^2+1)
>> then the imaginary number prints as "j" instead of "I", which might make
>>
On Fri, Dec 5, 2008 at 9:46 PM, Jan Groenewald <[EMAIL PROTECTED]> wrote:
>
> Hi
>
> On Thu, Dec 04, 2008 at 11:22:11AM -0600, Jason Grout wrote:
>> > http://sagenb.org:8000/home/pub/94/ and included some timings there.
>> Nice.
>> If you use:
>> R. = QQ.extension(x^2+1)
>> then the imaginary numb
Hi
On Thu, Dec 04, 2008 at 11:22:11AM -0600, Jason Grout wrote:
> > http://sagenb.org:8000/home/pub/94/ and included some timings there.
> Nice.
> If you use:
> R. = QQ.extension(x^2+1)
> then the imaginary number prints as "j" instead of "I", which might make
> more sense.
I would like to unde
On Dec 5, 7:06 pm, "Minh Nguyen" <[EMAIL PROTECTED]> wrote:
> Hi Michael,
>
>
>
> On Fri, Dec 5, 2008 at 6:38 PM, mabshoff <[EMAIL PROTECTED]> wrote:
>
> > Hello,
>
> > Sage Days 12 San Diego will be held January 21st-24th, 2009 at UCSD.
> [...]
> > The deadline for applications is December 12th
Hi Michael,
On Fri, Dec 5, 2008 at 6:38 PM, mabshoff <[EMAIL PROTECTED]> wrote:
>
> Hello,
>
> Sage Days 12 San Diego will be held January 21st-24th, 2009 at UCSD.
[...]
> The deadline for applications is December 12th, 2009, 5pm PST. The
I think you mean that the deadline is December 12th, 2008
[oops, here is the final version just like the one in sage-devel since
that one from the last email was close to the final draft. My
apologies]
Hello,
Sage Days 12 San Diego will be held January 21st-24th, 2009 at UCSD.
Its focus will be on improving the quality of Sage by fixing known
bugs from
Hello,
Sage Days 12 San Diego will be held January 21st-24th, 2009 at UCSD.
Its focus will be on improving the quality of Sage by fixing known
bugs from our tracker as well as ongoing work on an implementation of
Jean-Charles Faugere's F5 algorithm for computing Gröbner bases. There
are currently
On Fri, Dec 5, 2008 at 4:31 PM, john_perry_usm <[EMAIL PROTECTED]> wrote:
>
> Hi,
>
> x = polygen() returns an object of type
> Polynomial_generic_dense, while .inject_variables() injects x of
> type Polynomial_rational_dense.
>
> Why the difference?
Since I see no difference at all with the same
Hi,
x = polygen() returns an object of type
Polynomial_generic_dense, while .inject_variables() injects x of
type Polynomial_rational_dense.
Why the difference?
This was a problem for a student today, who was using polygen(), whose
returnee will not simplify x^3/x^2, whereas inject_variables()
Rafael wrote:
> Hello,
>
> I would like to pick out individual eigenvectors of a matrix, and then
> be able to manipulate them as vectors. I tried the following:
>
> --
> | Sage Version 3.2, Release Date: 2008-11-20
On Dec 5, 1:13 pm, "David Joyner" <[EMAIL PROTECTED]> wrote:
> Thank you Michael!
np
> It turns out I had to copy all the tck/tk header files over using
> sudo cp /usr/include/tcl8.5/*.h /usr/include/
For the record: This is a *very, very bad* idea to do so since in the
future there are numer
Thank you Michael!
PIL 1.1.6 BUILD SUMMARY
version 1.1.6
platform linux2 2.5.2 (r252:60911, Dec 3 2008, 13:33:02)
[GCC 4.3.2]
---
On Dec 5, 11:37 am, "David Joyner" <[EMAIL PROTECTED]> wrote:
> On Fri, Dec 5, 2008 at 2:13 AM, mabshoff
> > The compiler is looking in /usr/local/include and /usr/include - where
> > is your tk.h located?
>
> [EMAIL PROTECTED]:~/sagefiles/sage-3.2.1.rc0$ ls -la /usr/include/tcl8.5/tk.h
> -rw
On Fri, Dec 5, 2008 at 2:13 AM, mabshoff
<[EMAIL PROTECTED]> wrote:
>
>
>
> On Dec 4, 5:28 pm, "David Joyner" <[EMAIL PROTECTED]> wrote:
>> Hi:
>>
>>
>>
>> building '_imagingtk' extension
>> creating build/temp.linux-x86_64-2.5/Tk
>> gcc -fno-strict-aliasing -DNDEBUG -g -fwrapv -O3 -Wall
>> -Wst
You forgot the "[0]":
sage: m = matrix([[1,2,2],[2,1,2],[2,2,1]]); m
[1 2 2]
[2 1 2]
[2 2 1]
sage: es = m.eigenvectors_right(); es
[(5, [
(1, 1, 1)
], 1), (-1, [
(1, 0, -1),
(0, 1, -1)
], 2)]
sage: eval, evec, degen = es[0]; evec[0]
(1, 1, 1)
sage: m*evec[0]
(5, 5, 5)
On Fri, Dec 5, 2008 at
Hi Rafael,
On Fri, Dec 05, 2008 at 05:13:22AM -0800, Rafael wrote:
> sage: m*evec
> ---
> TypeError Traceback (most recent call
> last)
>
> So it seems I need to convert evec, which is a seque
Hello,
I would like to pick out individual eigenvectors of a matrix, and then
be able to manipulate them as vectors. I tried the following:
--
| Sage Version 3.2, Release Date: 2008-11-20 |
| Type noteboo
I get
sage: var('x')
x
sage: f = sin(x)/x
sage: g = f.integrate(x)
sage: g
integrate(sin(x)/x, x)
in 3.2.1.rc1. Personally, I would call this a missing feature, not a bug.
Interestingly, it can compute
sage: f.integrate(x,0,infinity)
pi/2
sage: f.integrate(x,-infinity,infinity)
pi
On Fri, De
On Thu, Dec 4, 2008 at 3:10 PM, William Stein <[EMAIL PROTECTED]> wrote:
>
>>
>> Done.
>> I posted a draft to
>> http://wiki.sagemath.org/faq#HowtogetSage.27sPythontorecognizemysystem.27sTcl.2BAC8-Tkinstall.3F
>> Can someone please check it over to see if it makes sense?
>
> It looks good to me.
20 matches
Mail list logo