X-Git-Url: http://gitweb.michael.orlitzky.com/?p=sage.d.git;a=blobdiff_plain;f=mjo%2Fhurwitz.py;h=10b308d2bfa602373e0924e390e7e10453eff221;hp=57f65786ebf564e1f250d5c22c60e35dcd440c08;hb=d2136d7696349ee48790818ed3927cbd9464e342;hpb=9c7fc4d836d337fcba8846ee4538bb0571c60f08 diff --git a/mjo/hurwitz.py b/mjo/hurwitz.py index 57f6578..10b308d 100644 --- a/mjo/hurwitz.py +++ b/mjo/hurwitz.py @@ -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 | + +---------+------+ ::