R/matrix.inv.calculation.R

Defines functions matrix.inv.calculation

matrix.inv.calculation <-
function(V){
    cV=chol(V)
    V.inv=chol2inv(cV)
    rm(cV)
    V.inv
}

Try the PAGWAS package in your browser

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

PAGWAS documentation built on May 2, 2019, 3:26 p.m.