Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix typo in definition of bivariate normal CDF. This is the standard defn of the CDF and what the `binormal_cdf` example actually computes. Verifiable in R: ``` test_binorm_cdf <- function(a,b,rho,nmc=1e5) { xx <- MASS::mvrnorm(nmc, c(0,0), matrix(c(1,rho,rho,1),2,2)) mean(xx[,1]<a & xx[,2]<b) } ```
- Loading branch information