|
MatrixContinuousDistributionDistributionFunction Method (Double)
|
Gets the probability density function (pdf) for
this distribution evaluated at point x.
Namespace:
Accord.Statistics.Distributions.Multivariate
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax public double DistributionFunction(
double[,] x
)
Public Function DistributionFunction (
x As Double(,)
) As Double
Request Example
View SourceParameters
- x
- Type: SystemDouble
A single point in the distribution range. For a
univariate distribution, this should be a single
double value. For a multivariate distribution,
this should be a double array.
Return Value
Type:
Double
The probability of
x occurring
in the current distribution.
Implements
IDistributionTObservationDistributionFunction(TObservation)Remarks
The Probability Density Function (PDF) describes the
probability that a given value x will occur.
See Also