Return the variance-covariance matrix for the fit if svd fitting was used. Definition at line 617 of file fitting_toolkit.py. 00617 : 00618 "return the variance-covariance matrix resulting from this fit when svd stepping was used" 00619 return dot(self.svd_v, Numeric.transpose(self.svd_winv**2*self.svd_v)) 00620 ##
|