SmtC: Show me the Code
Ole Peter Smith
Instituto de Matemática e Estatística
Universidade Federal de Goiás
http://www.olesmith.com.br

Matrices
Liberdade é um prato facil de comer.
Mas deficil de digerir
Jean-Jaques Rousseau

Print Matriz

Python Listing: ../../Code/Matrix.py.
    def __str__(A):
        ## Matrix print: print as list of Vectors.
        text=[]
        for i in range( len(A) ):
            text.append( A[i].__str__() )

        return "{\n   "+",\n   ".join(text)+"\n}"
    
Messages:
0 secs.