Opened 12 years ago
Last modified 12 years ago
#5714 closed defect
Mod-2 matrix output does not show subdivisions — at Initial Version
Reported by: | justin | Owned by: | tbd |
---|---|---|---|
Priority: | major | Milestone: | |
Component: | algebra | Keywords: | |
Cc: | Merged in: | ||
Authors: | Reviewers: | ||
Report Upstream: | Work issues: | ||
Branch: | Commit: | ||
Dependencies: | Stopgaps: |
Description
This was reported on sage-support. The following shows what's going on:
sage: MS7=MatrixSpace(Integers(7),4,4) sage: M=MS7.random_element() sage: M.subdivide([2],[2]) sage: M [6 1|3 4] [4 4|0 5] [---+---] [4 2|2 6] [5 6|3 3] sage: MS2=MatrixSpace(Integers(2),4,4) sage: N=MS2.random_element() sage: N.subdivide([2],[2]) sage: N [1 0 1 0] [1 1 0 0] [1 1 1 0] [0 0 0 1]
Note: See
TracTickets for help on using
tickets.