powered by
Multivariate normal distribution function
pmvn(lower, upper, mu, sigma, cor = FALSE)
lower limits
upper limits
mean vector
variance matrix or vector of correlation coefficients
if TRUE sigma is treated as standardized (correlation matrix)
lower <- rbind(c(0,-Inf),c(-Inf,0)) upper <- rbind(c(Inf,0),c(0,Inf)) mu <- rbind(c(1,1),c(-1,1)) sigma <- diag(2)+1 pmvn(lower=lower,upper=upper,mu=mu,sigma=sigma)
Run the code above in your browser using DataLab