thaw¶
-
sherpa.ui.
thaw
(*args)¶ Allow model parameters to be varied during a fit.
If called with no arguments, then all parameters of models in source expressions are thawed. The arguments can be parameters or models (in which case all parameters of the model are thawed).
See also
Examples
Ensure that the FWHM parameter of the line model (in this case a gauss1d model) will be varied in any fit.
>>> set_source(const1d.bgnd + gauss1d.line) >>> thaw(line.fwhm) >>> fit()
Thaw all parameters of the line model and then re-fit:
>>> thaw(line) >>> fit()
Thaw the nh parameter of the gal model and the abund parameter of the src model:
>>> thaw(gal.nh, src.abund)