On Sep 20, 6:08 pm, Nils Bruin wrote:
> It's actually just as big a problem as the third example you give:
Oh, haha, yes it is.
>http://trac.sagemath.org/sage_trac/ticket/7496
>should partly deal with the nasty bits of this problem.
Great!
> The assumption that var(("a","b","c")) or var (["a",
On Tue, 20 Sep 2011 at 06:47PM -0700, John H Palmieri wrote:
> On Tuesday, September 20, 2011 5:46:03 PM UTC-7, Tom wrote:
> >
> > +1 to .file.py, since it'll hide the file from directory listings.
>
> I'm not sure I want to hide the file. I don't actually use xxx.sage files
> much, but when I d
On Tuesday, September 20, 2011 5:46:03 PM UTC-7, Tom wrote:
>
> +1 to .file.py, since it'll hide the file from directory listings.
I'm not sure I want to hide the file. I don't actually use xxx.sage files
much, but when I do, I usually just delete the py file right away, and if
it's hidden, th
+1 to .file.py, since it'll hide the file from directory listings.
On Tue, Sep 20, 2011 at 1:23 PM, Felix Salfelder wrote:
> On Tue, Sep 20, 2011 at 12:55:32PM -0700, John H Palmieri wrote:
>> Should "sage-preparse" name the preparsed file something safer, in order to
>> prevent name clashes like
On 9/20/11 6:37 PM, Volker Braun wrote:
Thats impressive, but to compile Sage into js we need a bit more work ;-)
I was thinking more of having Sage transfer pure python functions to the
browser to execute, or writing browser logic in python, which is then
executed in the browser, sort of lik
Thats impressive, but to compile Sage into js we need a bit more work ;-)
What really caught my eye was the editor component, here is the demo:
http://ace.ajax.org/build/kitchen-sink.html and make sure to switch to
"Python". Can we have that as the editor in the worksheet? That might even
convi
I just saw this on slashdot: http://repl.it/
It uses Emscripten, an LLVM-to-Javascript compiler to compile CPython to
javascript, so the python code runs entirely in the web browser. As
another example of this, see http://syntensity.com/static/python.html.
"Emscripten is an LLVM-to-JavaScrip
On Sep 20, 10:20 am, jireva wrote:
> Hello everyone,
>
> The following creates three variables ``a``, ``b``, and ``c``::
>
> sage: var('a, b, c')
> (a, b, c)
>
> I would expect this to do the same thing::
>
> sage: var(('a', 'b', 'c'))
> (('a', 'b', 'c'))
>
> It doe
Hi Simon!
On Sep 20, 4:18 pm, Simon King wrote:
> However, note that since sage-4.7.2.alpha1 Sage finally has "proper"
> weighted degree term orders - that was trac ticket #11316. So, it will
> be in the next release.
Yes! I'm aware of (& delighted with) that.
> > sage: (x^2).degree(x)
>
> > >>
On Tue, Sep 20, 2011 at 9:52 AM, Volker Braun wrote:
> As it turns out, I put my code in a script.sage file and executed "sage
> script.sage" on the nodes. If you run a script this way, the sage-cleaner is
> not started and nobody cleans up the temp directories after each fork.
Yikes, that's a se
Hi John!
On 20 Sep., 21:21, john_perry_usm wrote:
> This took me by surprise:
>
> sage: tord = TermOrder(matrix([3,2,4,1,1,0,1,0,0]))
> sage: R. = PolynomialRing(QQ,'x',3,order=tord)
> sage: (x^2).degree() 6
It may be surprising that the first row of the order matrix is
interpreted as degree
On Tue, Sep 20, 2011 at 12:55:32PM -0700, John H Palmieri wrote:
> Should "sage-preparse" name the preparsed file something safer, in order to
> prevent name clashes like this? For example, turn FILE.sage into
> FILE_preparsed.py?
Hi.
while You are at it:
preparsed_FILE.py or even simply .FILE
On Tue, Sep 20, 2011 at 12:40:30PM +0200, Nicolas M. Thiery wrote:
> Here is a suggestion of implementation plan:
>
> - Low level kernel: implement efficient "mutable" subspaces. That is
>we want the usual subspaces:
> [..]
> - Implement generically (in ModulesWithBasis) a method:
> [..]
>
By the way, Volker, this is not fixed by
http://trac.sagemath.org/sage_trac/ticket/11819, since 'new' is imported by
twisted, not just by the Sage library.
--
John
--
To post to this group, send an email to sage-devel@googlegroups.com
To unsubscribe from this group, send an email to
sage-dev
+1
On a related note, I have more than once opened file.py for editing when I
really wanted to open file.sage
--
To post to this group, send an email to sage-devel@googlegroups.com
To unsubscribe from this group, send an email to
sage-devel+unsubscr...@googlegroups.com
For more options, visit
Sorry, I posted to the wrong thread! I meant the "can't name a script
new.sage" thread...
--
To post to this group, send an email to sage-devel@googlegroups.com
To unsubscribe from this group, send an email to
sage-devel+unsubscr...@googlegroups.com
For more options, visit this group at http://
On Tuesday, September 20, 2011 11:07:10 AM UTC-7, John H Palmieri wrote:
>
> If I create a simple Sage script and call it "script.sage", then running
> "sage script.sage" works fine. But if I call it "new.sage", it doesn't.
> Why?
>
>
[snip]
> from twisted.python import util, context,
Is this fixed by http://trac.sagemath.org/sage_trac/ticket/11819 ?
--
To post to this group, send an email to sage-devel@googlegroups.com
To unsubscribe from this group, send an email to
sage-devel+unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/
This took me by surprise:
sage: tord = TermOrder(matrix([3,2,4,1,1,0,1,0,0]))
sage: R. = PolynomialRing(QQ,'x',3,order=tord)
sage: (x^2).degree()
6
sage: (x^2).degree(x)
2
I didn't find the docstring helpful on this.
Digging around, I learned that this is how Singular treats the degree
Hello everyone,
The following creates three variables ``a``, ``b``, and ``c``::
sage: var('a, b, c')
(a, b, c)
I would expect this to do the same thing::
sage: var(('a', 'b', 'c'))
(('a', 'b', 'c'))
It doesn't, but that's not too big a problem...
This should *d
If I create a simple Sage script and call it "script.sage", then running
"sage script.sage" works fine. But if I call it "new.sage", it doesn't.
Why?
Script:
def f(i):
return i
f(10)
Error:
Traceback (most recent call last):
File "new.py", line 2, in
from sage.all_cm
As it turns out, I put my code in a script.sage file and executed "sage
script.sage" on the nodes. If you run a script this way, the sage-cleaner is
not started and nobody cleans up the temp directories after each fork.
This issue is now http://trac.sagemath.org/sage_trac/ticket/11818
--
To po
On Sep 20, 12:36 am, Stan Schymanski wrote:
> Since this is done in the units package already, is there a way to
> formally save the units of e.g. T_a as units.temperature.Kelvin and then
> have something like:
> sage: T_a = 300
> sage: T_a
> 300 Kelvin
You can of course write T_a=300*units.tempe
Hi Jonathan,
> In theory this could be added to the javascript functions being
> included with the update to the Jmol interface which is coming with
> the switch to the new flask notebook, but I'm not sure this is the
> best solution.
Apparently, people are also interested by the converse [1]. He
On Sep 20, 12:36 am, Stan Schymanski wrote:
> That's awesome, thanks a lot, William!
>
> Since this is done in the units package already, is there a way to
> formally save the units of e.g. T_a as units.temperature.Kelvin and then
> have something like:
> sage: T_a = 300
> sage: T_a
> 300 Kelvin
>
In my case, sometimes keeping multiplication coefficients, even in a sparse
form, is less efficient than recomputing them over and over again, from a
set of sparse matrix generators.
--
To post to this group, send an email to sage-devel@googlegroups.com
To unsubscribe from this group, send an
On Mon, Sep 19, 2011 at 12:23:06PM +0200, Jeroen Demeyer wrote:
> I only found sage/categories/finite_dimensional_algebras_with_basis.py
> which is just a category with essentially no code.
I noticed you found #1 in the mean time. Help on finalizing this
patch is most welcome :-)
> Have finit
On 19 sep, 22:56, leif wrote:
> On 19 Sep., 12:42, Jean-Pierre Flori wrote:
>
> > Dear all,
>
> > Would anyone mind if I update parts of the wiki page for spkg
> > tracking ?
>
> No, of course not. I occasionally update (parts of) it, but not on a
> regular basis.
>
> My impression was it isn't
On 2011-09-20 12:27, Dima Pasechnik wrote:
> This mandates the structure for
> multiplication coefficients being clever.
You mean they should be sparse?
--
To post to this group, send an email to sage-devel@googlegroups.com
To unsubscribe from this group, send an email to
sage-devel+unsubscr...
Hi!
On 20 Sep., 11:07, Simon King wrote:
> Opening a ticket now...
It is #11817, and ready for review.
It also fixes a fact in sage.misc.sagedoc.format, that ironically is
responsible for the fact that sage.misc.sagedoc.format? did not show
the docstring.
Cheers,
Simon
--
To post to this gro
actually, I won't mind having the functionality directly in Sage, at all :)
To be uselful fo rme, it certainly will need to support algebras of
dimension more than, say, 10,000, which
is not so uncommon in my applications (one often get these as centralisers
of permutation
groups, say). This man
Found it, found it!!
It seems that "?" is implemented in sage.misc.sagedoc.my_getdoc.
Looking at the code, it *is* intended to use
sage.misc.sageinspect.sage_getdoc. However, if the object has a
_sage_doc_ method, then its output will be printed without any
formatting applied.
I think that's a b
Hi!
Until today, I thought that introspection via "?" uses sage_getdoc. I
stand corrected. Apparently it just uses _sage_getdoc_unformatted.
While sage_getdoc is supposed to remove the embedding information,
introspection with "?" and _sage_getdoc_unformatted show the embedding
information:
{{{
That's awesome, thanks a lot, William!
Since this is done in the units package already, is there a way to
formally save the units of e.g. T_a as units.temperature.Kelvin and then
have something like:
sage: T_a = 300
sage: T_a
300 Kelvin
Cheers
Stan
On 19/09/11 17:09, William Stein wrote:
.
34 matches
Mail list logo