Return a list of options for VARPRO based fitting.
varpro_opts(
nstart = 20,
init_g_damping = 2,
maxiters = 200,
max_shift = 5,
max_g_damping = 5,
max_ind_damping = 5,
anal_jac = TRUE,
bl_smth_pts = 80
)
position in the time-domain to start fitting, units of data points.
starting value for the global Gaussian line-broadening term - measured in Hz.
maximum number of levmar iterations to perform.
maximum shift allowed to each element in the basis set, measured in Hz.
maximum permitted global Gaussian line-broadening.
maximum permitted Lorentzian line-broadening for each element in the basis set, measured in Hz.
option to use the analytic or numerical Jacobian (logical).
number of data points to use in the baseline smoothing calculation.
list of options.
varpro_opts(nstart = 10)
#> $nstart
#> [1] 10
#>
#> $init_g_damping
#> [1] 2
#>
#> $maxiters
#> [1] 200
#>
#> $max_shift
#> [1] 5
#>
#> $max_g_damping
#> [1] 5
#>
#> $max_ind_damping
#> [1] 5
#>
#> $anal_jac
#> [1] TRUE
#>
#> $bl_smth_pts
#> [1] 80
#>