R/vcov.R

Defines functions vcov.random

#' @importFrom stats vcov
#' @export
vcov.random <- function(object, ...) {
  ans <- object$structure.matrix
  attr(ans, 'inverse') <- object$structure.type == 'precision'
  ans
}
skayondo/breed_forest documentation built on Aug. 11, 2020, 12:35 a.m.