SimplexLSQFitter¶
-
class
astropy.modeling.fitting.SimplexLSQFitter[source]¶ Bases:
astropy.modeling.fitting.FitterSimplex algorithm and least squares statistic.
- Raises
- ModelLinearityError
A linear model is passed to a nonlinear fitter
Attributes Summary
Methods Summary
__call__(model, x, y[, z, weights])Fit data to this model.
Attributes Documentation
-
supported_constraints= ['bounds', 'fixed', 'tied']¶
Methods Documentation
-
__call__(model, x, y, z=None, weights=None, **kwargs)[source]¶ Fit data to this model.
- Parameters
- model
FittableModel model to fit to x, y, z
- xarray
input coordinates
- yarray
input coordinates
- zarray, optional
input coordinates
- weightsarray, optional
Weights for fitting. For data with Gaussian uncertainties, the weights should be 1/sigma.
- kwargsdict
optional keyword arguments to be passed to the optimizer or the statistic
- maxiterint
maximum number of iterations
- accfloat
Relative error in approximate solution
- equivalencieslist or None, optional and keyword-only argument
List of additional equivalencies that are should be applied in case x, y and/or z have units. Default is None.
- model
- Returns
- model_copy
FittableModel a copy of the input model with parameters set by the fitter
- model_copy