## ---- test-gammaMatrix-gammacap_mvnadj1-multivariate
set.seed(42)
tol_i <- 0.5
x_i <- rmvn_chol(
n = 1000,
mu = c(0.00, 0.00),
sigmacap = matrix(
data = c(1.00, 0.5, 0.5, 1),
nrow = 2
)
)
normal_i <- gammacap(x_i, type = "mvn")
testthat::test_that("test-gammaMatrix-gammacap_mvnadj1-multivariate", {
testthat::expect_true(
all(
abs(normal_i - gammacap(x_i, type = "mvnadj1")) <= tol_i
)
)
})
# clean environment
rm(
x_i,
tol_i,
normal_i
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.