there are a lists at sagewiki ,but too old,half year age
--
You received this message because you are subscribed to the Google Groups
"sage-support" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to sage-support+unsubscr...@googlegroups.com.
To post to th
This should work:
sage.plot.plot.EMBEDDED_MODE=False # show plot in jmol/other window
sphere().show()
sage.plot.plot.EMBEDDED_MODE=True # show other plots in notebook again
plot(x)
On Friday, March 7, 2014 3:45:58 AM UTC+8, Luis Finotti wrote:
>
>
>> Thanks for the reply!
>
> That is too b
Hi
How did you install?
Source, binary, or ppa?
Regards,
Jan
On 6 March 2014 20:43, Leo Arnold wrote:
> Hey there,
>
> I just installed the Sage 6.1.1 for Ubuntu 12.04_64 but every attemp to
> start it will yield
>
> ./sage/local/bin/python: 2: ./sage/local/bin/python: Syntax error:
> Unter
On Thu, Mar 6, 2014 at 5:27 PM, Barbara Sánta wrote:
> Hi, HammingCode is working, but I tried:
>
> C = BinaryReedMullerCode(4,2)
>
> Traceback (most recent call last):
> File "", line 1, in
> File "_sage_input_2.py", line 10, in
> exec compile(u'open("___code___.py","w").write("# -*- co
Hi, HammingCode is working, but I tried:
C = BinaryReedMullerCode(4,2)
Traceback (most recent call last):
File "", line 1, in
File "_sage_input_2.py", line 10, in
exec compile(u'open("___code___.py","w").write("# -*- coding: utf-8 -*-\\n"
+
_support_.preparse_worksheet_cell(base64.b64
Hello,
if you want to work with long table-array, it could be useful to use numpy.
2014-03-06 22:19 GMT+01:00 geo909 :
> I finally decided to use the csv goodies of python as described here:
> http://docs.python.org/2/library/csv.html
>
>
> On Thursday, March 6, 2014 11:56:22 AM UTC-5, geo909 wr
On 2014-03-06, Leo Arnold wrote:
> I just installed the Sage 6.1.1 for Ubuntu 12.04_64 but every attemp to start
> it will yield
>
> ./sage/local/bin/python: 2: ./sage/local/bin/python: Syntax error:
> Unterminated quoted string
Please check that the md5 sum of the downloaded tar file matches
I finally decided to use the csv goodies of python as described here:
http://docs.python.org/2/library/csv.html
On Thursday, March 6, 2014 11:56:22 AM UTC-5, geo909 wrote:
>
> Dear all,
>
> I kindly ask for your feedback on the following.
>
> My work involves the use of big lists that are of two k
On Thursday, 6 March 2014 13:30:13 UTC-3, Jeroen Demeyer wrote:
The original problem looks very much like a stack overflow.
cloud.sagemath didn't give any specific message, but the spinning wheel was
still going some 6 hours after the substitution command started. I tried
with the trace() c
legend would work on plot but I can't run my code on plot (it won't take
the variable y)
plot(x**2-4*x+y**2==0,xrange,yrange,color='red',linewidth=5,legend_label='x^2
- 4x + y^2 == 0')
Traceback (click to the left of this block for traceback)
...
ValueError: free variable: y
Vu,
On Thu, Mar 6
This is now http://trac.sagemath.org/ticket/15903
--
You received this message because you are subscribed to the Google Groups
"sage-support" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to sage-support+unsubscr...@googlegroups.com.
To post to this grou
On Thursday, March 6, 2014 2:24:00 PM UTC-5, Liam Dalton wrote:
>
> I have similar issues when running your code. However, the same code works
> if you do not do implicit plotting:
>
> var('x y')
> xrange = (x,0,5)
> yrange = (y,0,5)
> f1 = plot(x**2,xrange,color='red',legend_label='x^2 - 4x + y
On Thursday, March 6, 2014 11:47:38 AM UTC-5, kcrisman wrote:
>
>
>
> On Thursday, March 6, 2014 9:48:28 AM UTC-5, Luis Finotti wrote:
>>
>> Dear all,
>>
>> I am making a presentation of Sage for undergraduate math students next
>> week, and when trying some old example I see that I cannot make
I have similar issues when running your code. However, the same code works
if you do not do implicit plotting:
var('x y')
xrange = (x,0,5)
yrange = (y,0,5)
f1 = plot(x**2,xrange,color='red',legend_label='x^2 - 4x + y^2 == 0')
f2 = plot(x,xrange,legend_label='x*y==1')
result = f1+f2
result.legend
Hi, I try to add legend on a plot (created below) but doesn't seem to have
any success. There was no error, the legends just won't show up.
var('x y')
xrange = (x,0,5)
yrange = (y,0,5)
f1 =
implicit_plot(x**2-4*x+y**2==0,xrange,yrange,color='red',linewidth=5,legend_label='x^2
- 4x + y^2 == 0
I was wondering if there is a process for importing libraries that do not seem
to be preexisting on the cloud into IPython sessions. In my case, I would like
to do the following import:
> from qutip import *
For context about what this library is:
qutip is a library that makes the use of Dirac
Hey there,
I just installed the Sage 6.1.1 for Ubuntu 12.04_64 but every attemp to start
it will yield
./sage/local/bin/python: 2: ./sage/local/bin/python: Syntax error: Unterminated
quoted string
Also, the .get directory is contained in the archive :-?
--
You received this message because
Dear all,
I kindly ask for your feedback on the following.
My work involves the use of big lists that are of two kinds:
a) lists of integers
b) lists of lists of integers
The contents of those lists come from quite long computations and I need to
reuse those tuples often,
so it is necessary t
On Thursday, March 6, 2014 9:48:28 AM UTC-5, Luis Finotti wrote:
>
> Dear all,
>
> I am making a presentation of Sage for undergraduate math students next
> week, and when trying some old example I see that I cannot make a 3D graph
> interactive anymore.
>
> The first error is that the java plu
On 2014-03-06 15:18, jorges wrote:
I was able to make the substitution, first in cloud.sagemath and then
locally oon my PC. The trick was to simplify the expression before doing
the substitution. I should have probably tried that from the beginning.
I would expect, however, the computation to tak
Dear all,
I am making a presentation of Sage for undergraduate math students next
week, and when trying some old example I see that I cannot make a 3D graph
interactive anymore.
The first error is that the java plugin is "out of date and vulnerable".
I've installed the latest plugin (from
ht
I was able to make the substitution, first in cloud.sagemath and then
locally oon my PC. The trick was to simplify the expression before doing
the substitution. I should have probably tried that from the beginning. I
would expect, however, the computation to take longer instead of
segfaulting s
Hello John,
Surely not? For the left nullity the vectors are row vectors on the
> left, but the matrix is acting on the right (unless I got out of bed
> on the wrong side this norming).
>
Yes, I now realise that I read the phrase in a "left-associative way",
interpreting "kernel of this matr
On Thursday, 6 March 2014 05:35:26 UTC-3, Dima Pasechnik wrote:
>
>
> could you also provide the output you get?
>
>
Sorry, here's the output from sage. I was working initally within the
notebook, but after getting messages that a subprocess had died, I tried
with the command line, copying the
Hi Peter,
Thanks for your suggestion, it's something I hadn't considered specifying
for all of my variables. I managed to avoid the '_first_ngens' by
restructuring the code, and your comment about making sure that everything
is actually an integer saved me a lot of time fixing the next error.
On 6 March 2014 08:59, Peter Bruin wrote:
> Hi Dima,
>
>
>> Is there something wrong in documentation regarding them?
>
>
> Possibly: the documentation of m.nullity() says
>
> Return the (left) nullity of this matrix, which is the dimension of
> the (left) kernel of this matrix acting from the rig
Hi Dima,
Is there something wrong in documentation regarding them?
>
Possibly: the documentation of m.nullity() says
Return the (left) nullity of this matrix, which is the dimension of
the (left) kernel of this matrix acting from the right on row
vectors.
This should probably be "acting from
I see. Thanks for your replies!
--
You received this message because you are subscribed to the Google Groups
"sage-support" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to sage-support+unsubscr...@googlegroups.com.
To post to this group, send email to s
It is not a bug, but a consequence of a different convention. In Sage,
nullity means left nullity, i.e. the dimension of the left kernel. In this
example, m.nullity() + m.rank() = m.nrows(). For the more common right
nullity (resp. kernel), use m.right_nullity() (resp. m.right_kernel())
inst
On 2014-03-06, Kuai Yu wrote:
>
>
> Rank-nullity theorem states that the rank and the nullity of a matrix add
> up to the number of columns of a matrix. In the following example, the
> matrix defined over R has 5 columns but its rank and nullity add up to 4.
> Is this a bug?
no; these kinds o
On 2014-03-05, jorges wrote:
> Hi,
> I am doing some symbolic calculus stuff with sage, basically solving some
> 4th order differential equations. At some point, I substitute some
> parameters in order to get numerical results. It seems "subs" is choking on
> one particular (big) expression. W
31 matches
Mail list logo