]> gitweb.michael.orlitzky.com - sage.d.git/blobdiff - mjo/hurwitz.py
matrix_algebra: use "[]" for trivial matrices and fix a test.
[sage.d.git] / mjo / hurwitz.py
index 57f65786ebf564e1f250d5c22c60e35dcd440c08..10b308d2bfa602373e0924e390e7e10453eff221 100644 (file)
@@ -715,11 +715,11 @@ class ComplexMatrixAlgebra(HurwitzMatrixAlgebra):
         sage: (I,) = A.entry_algebra().gens()
         sage: A([ [1+I, 1],
         ....:     [-1, -I] ])
-        +-------+----+
-        | I + 1 | 1  |
-        +-------+----+
-        | -1    | -I |
-        +-------+----+
+        +---------+------+
+        | 1 + 1*I | 1    |
+        +---------+------+
+        | -1      | -1*I |
+        +---------+------+
 
     ::