def fit_data (   self,
  xvector,
  yvector,
  weightlist = None 
)

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 
##


Generated on Wed Nov 21 10:18:32 2007 for analysis by  doxygen 1.5.4