#5717: subdivide and matrices mod 2 -- printing broken
----------------------------+-----------------------------------------------
Reporter: was | Owner: was
Type: defect | Status: new
Priority: major | Milestone: sage-3.4.1
Component: linear algebra | Keywords:
----------------------------+-----------------------------------------------
Printing of subdivisions of matrices mod 2 is broken. Also, lifting of
matrices should preserve subdivision but doesn't, but that's a separate
ticket (#5716)
{{{
sage: a = random_matrix(GF(2),4)
sage: a.subdivide(2,2)
sage: a
[1 0 1 0]
[1 0 1 0]
[1 1 1 1]
[1 1 0 1]
sage: b = a.lift()
sage: b.subdivide(2,2)
sage: b
[1 0|1 0]
[1 0|1 0]
[---+---]
[1 1|1 1]
[1 1|0 1]
}}}
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/5717>
Sage <http://sagemath.org/>
Sage - Open Source Mathematical Software: Building the Car Instead of
Reinventing the Wheel
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"sage-trac" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/sage-trac?hl=en
-~----------~----~----~----~------~----~------~--~---