View source: R/02_QitemFunctions.R
qBiNormal | R Documentation |
Calculates the cumulative distribution function (CDF) of a bivariate normal distribution. This function computes P(X <= a, Y <= b) where X and Y follow a bivariate normal distribution with correlation coefficient rho.
qBiNormal(a, b, rho)
a |
Numeric value, the upper limit for the first variable. |
b |
Numeric value, the upper limit for the second variable. |
rho |
Numeric value between -1 and 1, the correlation coefficient. |
The implementation uses numerical integration with Gauss-Legendre quadrature for accurate computation. Special cases for infinite bounds are handled separately.
The probability P(X <= a, Y <= b), a value between 0 and 1.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.