Ticket #5362 (closed defect: fixed)
[with patch, positive review] bug in transpose for matrix_double_dense
| Reported by: | ylchapuy | Owned by: | was |
|---|---|---|---|
| Priority: | critical | Milestone: | sage-3.4 |
| Component: | linear algebra | Keywords: | transpose |
| Cc: | Work issues: | ||
| Report Upstream: | Reviewers: | ||
| Authors: | Merged in: | ||
| Dependencies: | Stopgaps: |
Description
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]
Attachments
Change History
Note: See
TracTickets for help on using
tickets.


I updated the formatting of the docstring to be compatible with the new documentation system. Other than that, looks good. Good catch!