Add one data point to the fit.
Definition at line 343 of file fitting_toolkit.py. 00343 : 00344 self.check_arrays(xvector) 00345 n=self.pointcount 00346 if self.arg_count > 1: 00347 self.xarray[:,n]=xvector 00348 else: 00349 self.xarray[0,n]=xvector 00350 self.yarray[n]=yval 00351 self.pointcount=self.pointcount+1 00352 ##
|