pbivnorm is an R package containing a vectorized function to compute the
bivariate normal CDF. It is based on
the mnormt package
by Adelchi Azzalini, which uses
Fortran code by Alan Genz to
compute integrals of multivariate normal densities.
A call to pbivnorm() produces identical output to a corresponding set of
calls to mnormt::pmnorm(), but at lower computational cost due to
vectorization (i.e., looping in Fortran rather than in R).
Vectorized bivariate normal CDF
pbivnormis an R package containing a vectorized function to compute the bivariate normal CDF. It is based on themnormtpackage by Adelchi Azzalini, which uses Fortran code by Alan Genz to compute integrals of multivariate normal densities.A call to
pbivnorm()produces identical output to a corresponding set of calls tomnormt::pmnorm(), but at lower computational cost due to vectorization (i.e., looping in Fortran rather than in R).