Ejemplo n.º 1
0
    def __init__(self, n, **kwargs):
        Matrices.__init__(self, n, n)

        self.n = n
Ejemplo n.º 2
0
 def __init__(self, n):
     Matrices.__init__(self, n, n)
Ejemplo n.º 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)