Click or drag to resize
Accord.NET (logo)

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
)
Request Example View Source

Parameters

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: Double
See Also