Nothing
## File Name: slca_est_Xlambda_calc_increment.R
## File Version: 0.11
slca_est_Xlambda_calc_increment <- function(d1, d2, x0, regularization,
regular_lam_used, max.increment, regular_type, regular_n )
{
if (regularization){
res <- cdm_calc_increment_regularization( d1=d1, d2=d2, x0=x0,
regular_lam_used=regular_lam_used, max.increment=max.increment,
regular_type=regular_type, regular_n=regular_n)
}
if (!regularization){
res <- cdm_calc_increment( d1=d1, d2=d2, max.increment=max.increment )
}
return(res)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.