Model parameters¶
Model parameters are implemented by GModelPar which derives from the abstract GOptimizerPar base class. Each model parameter is factorised into a value and a scale part according to
where
In addition, the class handles parameter errors and gradients as well
as parameter minima or maxima.
Parameter errors can be accessed or set via the
GModelPar::error() and GModelPar::factor_error(),
where the former concerns the error on
Finally, GModelPar::fix() and GModelPar::free() methods allow to fix or to free a model parameter, and the GModelPar::is_free() and GModelPar::is_fix() methods allow to check whether a parameter is free or fixed.