Click or drag to resize
Accord.NET (logo)

MultivariateNormalDistributionBivariate Method

Creates a new bivariate Normal distribution.

Namespace:  Accord.Statistics.Distributions.Multivariate
Assembly:  Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax
public static MultivariateNormalDistribution Bivariate(
	double mean1,
	double mean2,
	double stdDev1,
	double stdDev2,
	double rho
)
Request Example View Source

Parameters

mean1
Type: SystemDouble
The mean value for the first variate in the distribution.
mean2
Type: SystemDouble
The mean value for the second variate in the distribution.
stdDev1
Type: SystemDouble
The standard deviation for the first variate.
stdDev2
Type: SystemDouble
The standard deviation for the second variate.
rho
Type: SystemDouble
The correlation coefficient between the two distributions.

Return Value

Type: MultivariateNormalDistribution
A bi-dimensional MultivariateNormalDistribution.
See Also