R/Vbi.R

Defines functions Vbi

Documented in Vbi

Vbi <-
function(D, Z_i, R){
  D - (D %*% t(Z_i)) %*% solve(Z_i %*% D %*% t(Z_i) + R) %*% t(D %*% t(Z_i))
}

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.