コード例 #1
0
ファイル: TableIO.py プロジェクト: ecell/ecell3
def readTableAsArray(file,commentChars):
    t = _tableio.readTable(file,commentChars)
    a = TableToArray(t)
    return a
コード例 #2
0
ファイル: TableIO.py プロジェクト: ecell/ecell3
def readColumns(file, commentChars, columns='all'):
    t = _tableio.readTable(file,commentChars)
    return extractColumns(t, columns)
コード例 #3
0
ファイル: TableIO.py プロジェクト: ecell/ecell3
def readTable(file,commentChars):
    t = _tableio.readTable(file,commentChars)
    return t