Package park :: Package fitting :: Module fitresult :: Class FitResult

Class FitResult

source code


Container for reporting fit results.
Instance Methods
 
__init__(self, parameters, calls, fitness)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code
 
calc_cov(self, fn)
Return the covariance matrix inv(J'J) at point p.
source code
 
set_cov(self, cov)
Return the covariance matrix inv(J'J) at point p.
source code
 
print_summary(self, fid=sys.stdout) source code

Inherited from object: __delattr__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __str__

Instance Variables
  parameters
Fit parameter list, each with name, range and value attributes.
  calls
Number of function calls
  fitness
Value of the goodness of fit metric
  pvec
Parameter vector
  stderr
Parameter uncertainties
  cov
Covariance matrix
Properties

Inherited from object: __class__

Method Details

__init__(self, parameters, calls, fitness)
(Constructor)

source code 
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
Overrides: object.__init__
(inherited documentation)