Exemplo n.º 1
0
def readTableAsArray(file,commentChars):
    t = _tableio.readTable(file,commentChars)
    a = TableToArray(t)
    return a
Exemplo n.º 2
0
def readColumns(file, commentChars, columns='all'):
    t = _tableio.readTable(file,commentChars)
    return extractColumns(t, columns)
Exemplo n.º 3
0
def readTable(file,commentChars):
    t = _tableio.readTable(file,commentChars)
    return t