def __init__(self, matrix_file=None, mtype="float"): self.colNames = [] self.rowNames = [] self.colValues = {} self.rowValues = {} self.matrix = None self.mtype = None # If matrix file is supplied if matrix_file is not None: read_arraytable(matrix_file, \ mtype=mtype, \ arraytable_object = self)