R/psibi.R

Defines functions psibi

psibi <-
function(u, ccc){
  
  w <- abs(u) <= ccc
  v <- w * u * ((1 - (u / ccc)^2)^2)
  v <- v * 6 / ccc^2
  return(v)
}

Try the robflreg package in your browser

Any scripts or data that you put into this service are public.

robflreg documentation built on May 29, 2024, 3:55 a.m.