You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For qldata workflow we should add an option to fix a peak width to a known value (so for a single peak the FWHM is not a free variable, for 2 peaks there is 1 FHWM variable etc.).
will need to update the workflow to use something like this
func.add_single_lorentzian()
if func._N_peaks == 1:
func.set_func_guess(value)
func.set_func_bounds(lower, upper)
return func
The text was updated successfully, but these errors were encountered:
For qldata workflow we should add an option to fix a peak width to a known value (so for a single peak the FWHM is not a free variable, for 2 peaks there is 1 FHWM variable etc.).
will need to update the workflow to use something like this
The text was updated successfully, but these errors were encountered: