[sage-support] Re: Pynac bug

2009-03-25 Thread Alex Raichev
I suppose the same issue applies to other common functions, such as the sine function. Alex -- | Sage Version 3.4, Release Date: 2009-03-11 | | Type notebook() for the GUI, and license() for information.

[sage-support] Re: Installation problems

2009-03-25 Thread Minh Nguyen
Hi Nick, On Wed, Mar 25, 2009 at 8:48 PM, kickniko wrote: > > Hi Robert! > >> What OS/processor are you running this on? Which binary did you >> download? (Sounds like a mismatch.) >> >> - Robert > > OS: Mac OS X 10.5.6 > Machine: iBook G4, PowerPC G4 (1.2) > Sage package: sage-3.4-PowerPC-OSX1

[sage-support] Re: How to use Sage with Linux Ubuntu or Mandriva

2009-03-25 Thread Minh Nguyen
Hi Christophe, On Wed, Mar 25, 2009 at 9:08 PM, christophe van der putten wrote: > > Hi, > I install Linux Ubuntu in my PC (Intel Pentium Dual Core, 2Gega RAM), > after that i extract the version sage3.4 on this OS. And when i click > the sage icone in order to use, i have the message: > > "Do

[sage-support] Re: solve_linear ... how?

2009-03-25 Thread Jason Grout
Maurizio wrote: > Can you open a ticket to add this to the documentation? This certainly > deserves to be there! http://trac.sagemath.org/sage_trac/ticket/5612 Jason > > On 25 Mar, 17:21, Jason Grout wrote: >> Drini wrote: >> >>> On Mar 25, 9:22 am, kcrisman wrote: Is it possible tha

[sage-support] Re: solve_linear ... how?

2009-03-25 Thread Maurizio
Can you open a ticket to add this to the documentation? This certainly deserves to be there! On 25 Mar, 17:21, Jason Grout wrote: > Drini wrote: > > > On Mar 25, 9:22 am, kcrisman wrote: > >> Is it possible that the cvxopt package could help out?  Your problem > >> is not convex optimization pe

[sage-support] How to use Sage with Linux Ubuntu or Mandriva

2009-03-25 Thread christophe van der putten
Hi, I install Linux Ubuntu in my PC (Intel Pentium Dual Core, 2Gega RAM), after that i extract the version sage3.4 on this OS. And when i click the sage icone in order to use, i have the message: "Do you want to run "sage", or display its contents?" with the buttons "Run in terminal" or "Run".

[sage-support] Re: Installation problems

2009-03-25 Thread kickniko
Hi Robert! > What OS/processor are you running this on? Which binary did you   > download? (Sounds like a mismatch.) > > - Robert OS: Mac OS X 10.5.6 Machine: iBook G4, PowerPC G4 (1.2) Sage package: sage-3.4-PowerPC-OSX10.5-PowerMacintosh-Darwin.dmg So... what? :-/ Thanks a lot for the respo

[sage-support] Re: Installation problems

2009-03-25 Thread Robert Bradshaw
On Mar 25, 2009, at 12:20 PM, kickniko wrote: > > Hi all! > > The download and the copy of the sage package worked OK. > > Now, when I doubleclick on "sage" the terminal starts, as expected. > After some seconds of work I get the errer message: > > /Applications/Wissenschaft/sage/local/bin/sage-s

[sage-support] Installation problems

2009-03-25 Thread kickniko
Hi all! The download and the copy of the sage package worked OK. Now, when I doubleclick on "sage" the terminal starts, as expected. After some seconds of work I get the errer message: /Applications/Wissenschaft/sage/local/bin/sage-sage: line 197: 1322 Illegal instruction sage-ipython "$@" -i

[sage-support] Re: Bad patch for unicode chars in TinyMCE?

2009-03-25 Thread ma...@mendelu.cz
On 22 Bře, 04:46, Jason Grout wrote: > > As a hint to whoever wants to hunt this down if they get to it before > me: the original text of the cell is stored in a parameter passed to > tinymce when tinymce is initialized.  This is passed in the "data" > attribute in the following code from cell.py

[sage-support] Re: solve_linear ... how?

2009-03-25 Thread Drini
On Mar 25, 10:21 am, Jason Grout wrote: > Drini wrote: > > Here it is using linear algebra: > > sage: var('a,b,c,d,x,y') > (a, b, c, d, x, y) > sage: A=matrix(2,[a,b,c,d]); A > [a b] > [c d] > sage: result=vector([3,5]); result > (3, 5) > sage: soln=A.solve_right(result) # you could also do sol

[sage-support] Re: solve_linear ... how?

2009-03-25 Thread Jason Grout
Drini wrote: > > > On Mar 25, 9:22 am, kcrisman wrote: >> Is it possible that the cvxopt package could help out? Your problem >> is not convex optimization per se but maybe it would have something >> useful? This package uses LAPACK (also part of Sage), which "provides >> routines for solving

[sage-support] Re: Access deined problem while installing SAGE

2009-03-25 Thread William Stein
On Wed, Mar 25, 2009 at 6:31 AM, Karthick wrote: > > Dear All, > > I tried to install Sage 3.4 from Source, i untared the distribution > and gave the command 'make'. > > i ran for nearly 2 hours and got the following error.. > > *** ERROR >

[sage-support] Re: solve_linear ... how?

2009-03-25 Thread Drini
On Mar 25, 9:22 am, kcrisman wrote: > Is it possible that the cvxopt package could help out?  Your problem > is not convex optimization per se but maybe it would have something > useful?  This package uses LAPACK (also part of Sage), which "provides > routines for solving systems of simultaneou

[sage-support] Re: solve_linear ... how?

2009-03-25 Thread kcrisman
> But... that's solve() not solve_linear() and I can't find a > solve_linear either. So.. am I missing something? Is it possible that the cvxopt package could help out? Your problem is not convex optimization per se but maybe it would have something useful? This package uses LAPACK (also part

[sage-support] Re: weird behaviour when selecting a row/column from a matrix

2009-03-25 Thread Christophe Oosterlynck
Ah of course. Thank you both for your help. Christophe On Mar 25, 4:00 pm, Jason Grout wrote: > Johan Oudinet wrote: > > On Wed, Mar 25, 2009 at 11:39 AM, Christophe Oosterlynck > > wrote: > >> Any comments on this? > > >> it's really strange that when getting a vector from the matrix a > > >>

[sage-support] solve_linear ... how?

2009-03-25 Thread Drini
I'm doing a large set of symbolic linear system (about 7000) and using solve() is slow (program takes almos an hour to finish). I've spent 2 days trying to optimize the surrounding code and I've come to the conclusion that the bottleneck is the external calls to solve. Now, all the systems I'm d

[sage-support] Re: weird behaviour when selecting a row/column from a matrix

2009-03-25 Thread Jason Grout
Johan Oudinet wrote: > On Wed, Mar 25, 2009 at 11:39 AM, Christophe Oosterlynck > wrote: >> Any comments on this? >> >> it's really strange that when getting a vector from the matrix a >> b = a[:,0] >>> you have to use an extra index when you want to select an element from >> that vector b:

[sage-support] Access deined problem while installing SAGE

2009-03-25 Thread Karthick
Dear All, I tried to install Sage 3.4 from Source, i untared the distribution and gave the command 'make'. i ran for nearly 2 hours and got the following error.. *** ERROR **

[sage-support] precision in pari elliptic curve accessed from sage

2009-03-25 Thread Utpal Sarkar
Hi, I have an elliptic curve E in sage (over Q) and for a certain complex number tau I try to compute the image under the uniformization provided by the Weierstrass P-function associated to E. For this I use the function ellztopoint of pari: sage: E = EllipticCurve("14") sage: tau = ComplexField(

[sage-support] Re: weird behaviour when selecting a row/column from a matrix

2009-03-25 Thread Johan Oudinet
On Wed, Mar 25, 2009 at 11:39 AM, Christophe Oosterlynck wrote: > > Any comments on this? > > it's really strange that when getting a vector from the matrix a > >>> b = a[:,0] >> you have to use an extra index when you want to select an element from > that vector b: > >>> b[0][0] > > instead of j

[sage-support] Re: weird behaviour when selecting a row/column from a matrix

2009-03-25 Thread Christophe Oosterlynck
Any comments on this? it's really strange that when getting a vector from the matrix a >> b = a[:,0] you have to use an extra index when you want to select an element from that vector b: >> b[0][0] instead of just b[0] (this gives a list with 1 element...) Christophe On Mar 19, 3:39 pm, Chr