# File lib/Matriz.rb, line 6
def initialize(m)
@filas = m.size
@cols = m[1].size
@matriz = m
end