Retrieve the variance-covariance matrix of an mvn object.
# S3 method for class 'mvn'
vcov(object, ...)
Arguments
- object
The mvn object to retrieve the variance-covariance matrix of
- ...
Additional arguments to pass (not used)
Value
The variance-covariance matrix of the mvn object
Examples
X <- mvn(c(0, 0), diag(2))
vcov(X)
#> [,1] [,2]
#> [1,] 1 0
#> [2,] 0 1