Ask Your Question

Antlab's profile - activity

2019-09-14 06:37:07 +0200 received badge  Nice Question (source)
2019-09-13 21:43:15 +0200 commented answer SageAppliance not more maintained after 8.1?

Hi. I already installed Sage 8.8 from the Windows installer. Are there instructions for building the SageAppliance from 8.8 sources for using in VirtualBox? Thanks.

2019-09-12 21:49:45 +0200 asked a question SageAppliance not more maintained after 8.1?

Hi all. I am coming back to Sage after a long time. Working under Windows, I used Sage under VirtualBox without particular problems. Now I see that there exist direct Windows binaries, but with some limitations (e.g. it is not possible to install further packages). So I tried to also download the latest SageAppliance, but I noticed that, while completely absent in many mirrors, in some of them there is still at maximum the old 8.1.ova. So I would like to ask if the virtual appliances are not more maintained, and if for Windows it is mandatory to use the binaries, with the present limitations. Thanks.

2019-04-14 14:32:33 +0200 received badge  Notable Question (source)
2019-04-14 14:32:33 +0200 received badge  Popular Question (source)
2019-04-14 14:32:33 +0200 received badge  Famous Question (source)
2018-02-02 12:29:21 +0200 received badge  Famous Question (source)
2015-11-25 14:52:59 +0200 received badge  Notable Question (source)
2015-03-08 05:48:28 +0200 received badge  Popular Question (source)
2015-01-18 22:12:32 +0200 received badge  Enlightened (source)
2015-01-18 22:12:32 +0200 received badge  Good Answer (source)
2014-06-29 11:05:54 +0200 received badge  Famous Question (source)
2014-06-29 11:05:54 +0200 received badge  Notable Question (source)
2014-06-29 11:05:54 +0200 received badge  Popular Question (source)
2014-06-02 11:45:31 +0200 received badge  Nice Question (source)
2014-06-02 10:14:14 +0200 received badge  Nice Answer (source)
2014-05-13 09:57:04 +0200 answered a question xkcd and matplotlib

Hi. It seems that other people had that problem with the xkcd font in matplotlib. Here there is an interesting post concerning hte issue:

http://raj.blog.archive.org/tag/matpl...

In your case probably you only need to rebuild the cache with the command:

$ rm ~/.matplotlib/fontList.cache

Hope this helps.

2014-05-01 22:20:05 +0200 received badge  Nice Answer (source)
2014-04-30 12:52:10 +0200 answered a question Controling the color of a parametric surface.

Hi. If I understand correctly, your question is related to this section of the Sage Trac (colormaps on implicit and parametric plots):

http://trac.sagemath.org/ticket/12212

It seems that the feature still requires some work.

2014-04-17 00:04:04 +0200 received badge  Teacher (source)
2014-04-16 09:44:14 +0200 answered a question Substitute and evaluate

You can use:

f (x,y)=x+y

a = 2; b = 3

f(a,b)

In this way you obtain 5, the desired result. Actually you don't need x and y, you could use only a and b, but I put different names just to underline the mechanism. The first line defines the function f with generic variables. The last line calculates the value of f when you actually pass the values of the variables. It can be a bit confusing at first, I hope my example can help.

2014-04-14 19:15:29 +0200 commented answer Symbolic algebra: Sage, Maxima, Ginac, Sympy?

Thanks for the clarifications and the link. Sometimes is not easy to understand the differences and the mutual dependencies of the various mathematical package related to Sage. For this reason your answer is really helpful, I will continue to experiment with Sage and Sympy.

2014-04-14 15:11:10 +0200 asked a question Symbolic algebra: Sage, Maxima, Ginac, Sympy?

Hi all. In this period I am working on symbolic matrices, and I am a bit confused about the various possibilities and the mutual relationships.

If I understand correctly, for symbolic computation Sage uses Ginac and Maxima, but I have no a clear idea of the different roles of the two packages in Sage own engine.

Furthermore, I am reading some tutorials about Sympy. I know that Sympy is included in the huge library of Sage packages, but it is not directly used in any way by Sage for symbolic computation? Could you please clarify a bit these points?

Thanks.

2013-07-30 16:57:19 +0200 received badge  Editor (source)
2013-07-30 16:56:06 +0200 marked best answer Jmol 3D viewer problem in Linux

Avoid using icedtea-java with jmol. jmol works reliably and is tested only on oracle-java.

2013-07-30 16:56:06 +0200 received badge  Scholar (source)
2013-07-30 16:55:14 +0200 answered a question Jmol 3D viewer problem in Linux

Thanks to the precise indication by ppurka I have been able to completely solve the problem. If someone working on Linux finds similar problems, here there is a detailed guide for the (not so simple) task to install Oracle Java jdk and jre in Ubuntu (I actually use Mint, but the guide has worked well the same):

http://www.wikihow.com/Install-Oracle...

After installing Oracle Java and activacting it in Firefox, now the Jmol viewer works flawlessly, also with the advanced controls.

Hope this can be useful to somebody. Thanks again to ppurka.

2013-07-30 11:43:41 +0200 received badge  Student (source)
2013-07-30 11:16:07 +0200 asked a question Jmol 3D viewer problem in Linux

Hi all. I noticed some problems with 3D plots in the Sage notebook under Linux (Mint 15 KDE guest in VirtualBox). When I try to use the Advanced Controls of Jmol 3D viewer, the system always freezes. In particular, when I try to access the "Color and Mesh" tab, Firefox gives an error concerning a plugin called "IcedTea-Web".

I don't find similar problems running directly Sage in VirtualBox under Windows 7 64 bit.

Do you have any idea about the problem? Thanks.

2013-07-24 09:35:19 +0200 received badge  Supporter (source)
2013-07-24 09:20:59 +0200 commented answer How to load a Python program in Sage Notebook from Menu

Thanks for the answer.

2013-07-23 16:28:52 +0200 asked a question How to load a Python program in Sage Notebook from Menu

Hi all, I would like to know if is it possible from the graphical menu of the Sage notebook to insert a program in Python written in an external editor (as Spyder) inside a cell of the notebook. I tried with Data->Upload, but I did not understand how it works. I know that it is possible to directly use the command "load(program)", but it is not too comfortable, requiring to write the whole path of the file. Thanks.