[sage-support] Re: install R packages on OS X

2011-06-21 Thread Kirill Vankov
> You shouldn't have to move it anywhere; Sage doesn't have to live > anyplace in particular.  Is it only after you move it that you > encounter problems?    Maybe you have permission issues there? Yes, the problems were only with R packages and only after I moved entire sage folder. I did not wa

[sage-support] Re: install R packages on OS X

2011-06-20 Thread Kirill Vankov
Once I moved the compiled sage into /usr/local/ I cannot install additional R-packages anymore. Have to move it back. It is better to instruct whoever is going to compile sage on Mac to do so at the final destination folder. K. -- To post to this group, send email to sage-support@googlegroups.

[sage-support] Re: install R packages on OS X

2011-06-17 Thread Kirill Vankov
After four and a half hours of compillation my sage looks good, even though I received one warning message "dvipng command 'dvipng' cannot be run (needed for math display), check the pngmath_dvipng setting" The R-package installation option works. Starting sage in terminal do not produce Detecte

[sage-support] Re: install R packages on OS X

2011-06-17 Thread Kirill Vankov
> > Detected SAGE64 flag > > Building Sage on OS X in 64-bit mode > > Does this happen every time you start Sage?  That is odd. Yes, it does. But I really had never noticed, since usually I start sage not from terminal > down.  Presumably you have no directories like the ones in > > '/Users/buil

[sage-support] install R packages on OS X

2011-06-16 Thread Kirill Vankov
I was hoping that new release 4.7 will fix the problem, seeing that the ticket 5634 has been closed. However, I just tried to install a new package and got an error message: = Detected SAGE64 flag Building Sage on OS X in 64-bit mode

[sage-support] matrix_plot with colorbar

2011-04-07 Thread Kirill Vankov
How to produce a matrix_plot with colorbar? There is a Ticket #9150 (http://trac.sagemath.org/sage_trac/ticket/ 9150) to introduce this feature to density plots, can it be added to matrix plot as well? Regards, K. -- To post to this group, send email to sage-support@googlegroups.com To unsubscr

[sage-support] Re: running R code in SAGE

2011-03-21 Thread Kirill Vankov
Thank you for quick reply! It is interesting to consider custom R modules, I did not think about it. I was thinking in the direction of individual parser for expected R output and it is very useful to have an example. I'll give it a try. Kirill -- To post to this group, send email to sage-su

[sage-support] running R code in SAGE

2011-03-21 Thread Kirill Vankov
Suppose I have some R code with some functions defined. I would like to be able to call these functions within SAGE. I did not find any examples of someone doing so and I was not able to do so myself... I understand how to initiate R session within SAGE and within notebook cell, however, it is

[sage-support] Re: sparse Polynomial Quotient Ring troubles

2008-05-23 Thread Kirill Vankov
his was a bug. Fix is up here: > > http://trac.sagemath.org/sage_trac/ticket/3272 > > Give it a try, and let me know if you run into any more trouble. > > -cc > > On Thu, May 22, 2008 at 11:13 AM, Kirill Vankov <[EMAIL PROTECTED]> wrote: > > > Is there any way to define a

[sage-support] sparse Polynomial Quotient Ring troubles

2008-05-22 Thread Kirill Vankov
Is there any way to define a polynomial ring over a sparse quotient ring? This works: sage: p = 5 sage: A. = PolynomialRing(Integers(p)) sage: f = T^2+1 sage: B = A.quo(f) sage: print B sage: C. = PolynomialRing(B) sage: print C Univariate Quotient Polynomial Ring in Tbar over Ring of integers mo

[sage-support] Re: Dokchitser's L-functions Calculator

2008-04-18 Thread Kirill Vankov
Thanks a lot! I am sure it is the interface problem, but I am still too new in python to understand all the details. Overall SAGE works great and it is so easy to use. I wish there will be Sage Days Europe soon ;) ~Kirill On Apr 17, 8:11 pm, "William Stein" <[EMAIL PROTECTED]> wrote: > Kiril

[sage-support] Re: Dokchitser's L-functions Calculator

2008-04-17 Thread Kirill Vankov
In my second example there were not enough coefficients defined in pari_precode. Even though SAGE indicates the need of 72 of them I had to give about 150. It works now and the result coincides with direct summation of the L-series. sage: L = Dokchitser(conductor=1, gammaV=[-11,-10,0,1], weight

[sage-support] Re: Dokchitser's L-functions Calculator

2008-04-17 Thread Kirill Vankov
Here is some update. Looks like it is a problem in passing pari_precode value into GP interpreter. The random input (like a syntax error) gives the same error message. I avoided using two functions replacing tau by a table, now the code works in SAGE. It is not clear though in advance how many

[sage-support] Dokchitser's L-functions Calculator

2008-04-16 Thread Kirill Vankov
Hi, I have a problem using Dokchitser's L-functions Calculator. The given example for Delta function works well, but my own programming fails all the time. I am getting a strange error message "Unable to create L-series, due to precision or other limits in PARI" and cannot figure out what to do