R/reScale.R

Defines functions reScale

Documented in reScale

reScale <-
function(i, j, est, vc){
  return(est[j] ^ 2 * vc[i, i] + est[i] ^ 2 * vc[j, j] + 2 * est[j] * est[i] * vc[i, j] + vc[j, j] * vc[i, i] + vc[i, j] ^ 2)
}

Try the MargCond package in your browser

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

MargCond documentation built on May 1, 2019, 8:46 p.m.