Given a vector of x values and y values, and optional weights, compute the fit. Definition at line 763 of file fitting_toolkit.py. 00763 : 00764 "compute the fit of the supplied data, all in one call" 00765 self.pointcount=0 #reset the fitter for easy reuse once set up 00766 self.firstpass=1 00767 self.add_points(xvector, yvector) 00768 self.explicit_weightlist=weightlist 00769 self.compute_fit() #one pass needed, no fancies, since the system is linear 00770 ##
|