R/tau.R

Defines functions tau

tau <-
function(X, c1, c2, ka, cgl, tol, scal){
  
  if(scal==-1){
    s <- scale1(X, c1, cgl, tol, 1)
  }else{
    s <- scal
  }
  t <- ( 1 / (6 * ka)) * (s^2) * (c2^2) * mean(rhobi(X / s, c2))
  t <- sqrt(t)
  list(t=t, s=s)
}

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.