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
fit_OSLLifeTimes(ExampleData.TR_OSL, signal_range=1:2)
# Error in fit_OSLLifeTimes(ExampleData.TR_OSL, signal_range = 1:2) : # object 'start_parameters' not found
The text was updated successfully, but these errors were encountered:
we don't even enter the while loop (as df2 = length(df[[2]]) - 2 * m - 2 is negative: 2 - 2 * 1 - 2 = -2), and start_parameters doesn't get initialised.
It seems that we need a test on a minimum number of signal points (which depends on the requested number of components m).
Actually we have a check, but that happens before we restrict the dataset to only the points in the signal range requested, so it should be enough to move that to the correct spot.
The text was updated successfully, but these errors were encountered: