def _copy_from_table(self): """ Copy data from coefficient table `self.tblCoeff` to clipboard in CSV format or to file using a selected format """ # pass table instance, numpy data and current class for accessing the # clipboard instance or for constructing a QFileDialog instance qtable2text(self.tblPZ, self.zpk, self, 'zpk')
def _copy_from_table(self): """ Copy data from coefficient table `self.tblCoeff` to clipboard / file in CSV format. """ qtable2text(self.tblCoeff, self.ba, self, 'ba', self.myQ.frmt, title="Export Filter Coefficients")
def _copy_from_table(self): """ Copy data from coefficient table `self.tblCoeff` to clipboard in CSV format or to file. """ qtable2text(self.tblCoeff, self.ba, self, 'ba', self.myQ.frmt)