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
A seriedade dos acontecimentos da minha época.
Me enche de esperança.
Karl Marx

Copiar Matriz

Python Listing: ../../../Code/Matrix.py.
def Matrix_Copy(A):
    B=[]
    for i in range( len(A) ):
        B.append([])
        for j in range( len(A[i]) ):
            B[i].append(A[i][j])

    return B

Messages:
0 secs.