#5362: [with patch, needs review] bug in transpose for matrix_double_dense
----------------------------+-----------------------------------------------
Reporter: ylchapuy | Owner: was
Type: defect | Status: new
Priority: critical | Milestone: sage-3.4.1
Component: linear algebra | Keywords: transpose
----------------------------+-----------------------------------------------
A copy is missing:
{{{
sage: m=matrix(RDF,2,2,range(4))
sage: m2=m.transpose()
sage: m2
[0.0 2.0]
[1.0 3.0]
sage: m[0,0]=1
sage: m2
[1.0 2.0]
[1.0 3.0]
}}}
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/5362>
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
-~----------~----~----~----~------~----~------~--~---