#5716: lifting a subdivided matrix should preserve the subdivision, but doesn't.
----------------------------+-----------------------------------------------
Reporter: was | Owner: was
Type: defect | Status: new
Priority: major | Milestone: sage-3.4.1
Component: linear algebra | Keywords:
----------------------------+-----------------------------------------------
Description changed by was:
Old description:
> {{{
> sage: a = random_matrix(GF(3),4)
> sage: a.subdivide(2,2)
> sage: a
> [2 0|0 2]
> [2 1|1 0]
> [---+---]
> [1 2|1 0]
> [1 0|0 1]
> sage: a.lift()
> [2 0 0 2]
> [2 1 1 0]
> [1 2 1 0]
> [1 0 0 1]
> }}}
New description:
{{{
sage: a = random_matrix(GF(3),4)
sage: a.subdivide(2,2)
sage: a
[2 0|0 2]
[2 1|1 0]
[---+---]
[1 2|1 0]
[1 0|0 1]
sage: a.lift()
[2 0 0 2]
[2 1 1 0]
[1 2 1 0]
[1 0 0 1]
}}}
See also #5717.
--
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/5716#comment:1>
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
-~----------~----~----~----~------~----~------~--~---