]> gitweb.michael.orlitzky.com - sage.d.git/commitdiff
eja: add missing transpose() to deortho matrix.
authorMichael Orlitzky <michael@orlitzky.com>
Thu, 11 Mar 2021 21:35:38 +0000 (16:35 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Thu, 11 Mar 2021 21:35:38 +0000 (16:35 -0500)
mjo/eja/eja_algebra.py

index 615b0d494af83a132e1d6343fe05917e4ed2eaf7..845503b081ce7a9282128886fa595ca4bd7027a6 100644 (file)
@@ -357,8 +357,8 @@ class FiniteDimensionalEJA(CombinatorialFreeModule):
             # coordinates and the given ones, we need to stick the original
             # basis in W.
             U = V.span_of_basis( deortho_vector_basis, check=check_axioms)
-            self._deortho_matrix = matrix( U.coordinate_vector(q)
-                                           for q in vector_basis )
+            self._deortho_matrix = matrix.column( U.coordinate_vector(q)
+                                                  for q in vector_basis )
 
 
         # Now we actually compute the multiplication and inner-product