|
NormalBivariate Method
|
Bivariate normal cumulative distribution function.
Namespace:
Accord.Math
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public static double Bivariate(
double x,
double y,
double rho
)
Public Shared Function Bivariate (
x As Double,
y As Double,
rho As Double
) As Double
Request Example
View SourceParameters
- x
- Type: SystemDouble
The value of the first variate. - y
- Type: SystemDouble
The value of the second variate. - rho
- Type: SystemDouble
The correlation coefficient between x and y. This can be computed
from a covariance matrix C as rho = C_12 / (sqrt(C_11) * sqrt(C_22))
.
Return Value
Type:
DoubleSee Also