|
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
)
Public Shared Function Bivariate (
mean1 As Double,
mean2 As Double,
stdDev1 As Double,
stdDev2 As Double,
rho As Double
) As MultivariateNormalDistribution
Request Example
View SourceParameters
- 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:
MultivariateNormalDistributionA bi-dimensional
MultivariateNormalDistribution.
See Also