Three coordinates are needed to identify a basis element in general:
(i,j) to identify the component, and then "k" for the basis within
the (i,j)th component.
This should allow us to define HnClan, which has 2d off-diagonal
components.
An element of a :class:`NormalDecomposition`.
These may have additional methods that require knowledge of the
- coordinates in a normal decomposition.
+ coordinates in a normal decomposition. The basis should follow the
+ Ishi convention with the components (i,j) being ordered
+ lexicographically and then within each component the basis
+ elements (i,j,k) ordered arbitrarily.
"""
+
def tr(self):
r"""
The clan trace of this element; the sum of its diagonal
8
"""
- return self.seq(k)[k,k]
+ return self.seq(k)[k,k,1]
def chi(self, k):