R Under development (unstable) (2023-08-11 r84935 ucrt) -- "Unsuffered Consequences" Copyright (C) 2023 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > library(copent) > library(mnormt) > rho1 <- 0.5 > rho2 <- 0.6 > rho3 <- 0.5 > sigma <- matrix(c(1,rho1,rho2,rho1,1,rho3,rho2,rho3,1),3,3) > x <- rmnorm(500,c(0,0,0),sigma) > ci1 <- ci(x[,1],x[,2],x[,3]) > > proc.time() user system elapsed 0.42 0.12 0.53