BayesicFitting

Model Fitting and Evidence Calculation

View project on GitHub



class PowellFitter( ScipyFitter )Source

Powell's conjugate direction method.

Syntactic sugar for
     ScipyFitter( ..., method='POWELL', ... )

See ScipyFitter

PowellFitter( xdata, model, **kwargs )

Constructor. Create a class, providing inputs and model.

Parameters

  • xdata : array_like
         array of independent input values
  • model : Model
         a model function to be fitted (linear or nonlinear)
  • kwargs : dict
         Possibly includes keywords from
             ScipyFitter: gradient, hessp
             MaxLikelihoodFitter : errdis, scale, power
             IterativeFitter : maxIter, tolerance, verbose
             BaseFitter : map, keep, fixedScale
Methods inherited from ScipyFitter
Methods inherited from MaxLikelihoodFitter
Methods inherited from IterativeFitter
Methods inherited from BaseFitter