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