Example #1
0
    def __init__(self, n, **kwargs):
        Matrices.__init__(self, n, n)

        self.n = n
Example #2
0
 def __init__(self, n):
     Matrices.__init__(self, n, n)
Example #3
0
 def __init__(self, n):
     assert isinstance(n, int) and n > 0
     LieGroup.__init__(self, dimension=n * n)
     Matrices.__init__(self, m=n, n=n)