Skip to content

Commit

Permalink
use transpose to get matrix of coordinate vectors
Browse files Browse the repository at this point in the history
  • Loading branch information
jacksonwalters committed Apr 5, 2024
1 parent 132db04 commit 156e9aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/combinat/symmetric_group_algebra.py
Original file line number Diff line number Diff line change
Expand Up @@ -1977,7 +1977,7 @@ def _dft_modular(self):
for pair in list(b):
coord_vector[sym_group_list.index(pair[0])] = pair[1]
change_of_basis_matrix.append(coord_vector)
return matrix(self.base_ring(),change_of_basis_matrix)
return matrix(self.base_ring(),change_of_basis_matrix).transpose()

def epsilon_ik(self, itab, ktab, star=0, mult='l2r'):
r"""
Expand Down

0 comments on commit 156e9aa

Please sign in to comment.