[sage-devel] Re: Printing a matrix of large size

2019-05-18 Thread John H Palmieri
Did you try "print(mat.str())"? On Saturday, May 18, 2019 at 6:37:02 PM UTC-7, Kwankyu Lee wrote: > > Hi, > > If mat is a matrix of large size, it is displayed in a short form: > > sage: mat > 22 x 32 dense matrix over Finite Field of size 2 (use the '.str()' method > to see the entries) > > >

[sage-devel] Printing a matrix of large size

2019-05-18 Thread Kwankyu Lee
Hi, If mat is a matrix of large size, it is displayed in a short form: sage: mat 22 x 32 dense matrix over Finite Field of size 2 (use the '.str()' method to see the entries) Then if I follow the recommendation, sage: mat.str() '[1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 1 1 1

[sage-devel] show() method for all sage objects

2019-05-18 Thread Kwankyu Lee
Hi, How about adding show() method to the class of sage objects, so that we can do mat.transpose().show() instead of show(mat.transpose()) which is cumbersome to add to and remove from mat.transpose()? This is useful in Jupyter notebook. Kwankyu -- You received this message because you

Re: [sage-devel] Re: Characteristic Classes - Implement Vector Bundles?

2019-05-18 Thread Michael Jung
Damn it, I feel so stupid! :D Thanks, this did the job. :) Am 15.05.2019 um 14:48 schrieb Travis Scrimshaw: However, the interesting part for me is the commutative subalgebra of even mixed forms which I could certainly implement. But I am not sure whether this will work due to the

[sage-devel] Re: Automatic Differentiation - Taylor Arithmetics

2019-05-18 Thread mforets
Hi all, Yet another open source alternative: Taylor models are implemented in Julia (see TaylorModels.jl ), and this library offers validated integration of ODEs (disclaimer: i also contribute to this and related projects that use other

Re: [sage-devel] Re: gcc 9.1 ?

2019-05-18 Thread Dima Pasechnik
On Sat, May 18, 2019 at 10:47 AM Volker Braun wrote: > > gcc9 in fedora 30 apparently miscompiles bcache > > https://fedoraproject.org/wiki/Common_F30_bugs#Upgrade_bcache_based_systems_to_Fedora_30_may_result_in_severe_storage_corruption > see https://trac.sagemath.org/ticket/27676 for dealing

[sage-devel] Re: gcc 9.1 ?

2019-05-18 Thread Volker Braun
gcc9 in fedora 30 apparently miscompiles bcache https://fedoraproject.org/wiki/Common_F30_bugs#Upgrade_bcache_based_systems_to_Fedora_30_may_result_in_severe_storage_corruption -- You received this message because you are subscribed to the Google Groups "sage-devel" group. To unsubscribe from

[sage-devel] Re: Automatic Differentiation - Taylor Arithmetics

2019-05-18 Thread Marc Mezzarobba
Nisoli Isaia wrote: > I've seen that you wrote a sage interface for sollya, which > seems to take already take care of Taylor models. Indeed, though the Taylor models in Sollya may be a bit limited, and (if I understood right, but I'm really no expert here) have some performance issues. > Is