From 2a534368e635eb94c2c866dbc35e9a8ef9d539d4 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Thu, 11 Mar 2021 16:35:38 -0500 Subject: [PATCH] eja: add missing transpose() to deortho matrix. --- mjo/eja/eja_algebra.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mjo/eja/eja_algebra.py b/mjo/eja/eja_algebra.py index 615b0d4..845503b 100644 --- a/mjo/eja/eja_algebra.py +++ b/mjo/eja/eja_algebra.py @@ -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 -- 2.43.2