|
GeneralContinuousDistributionFromDistributionFunction Method (DoubleRange, FuncDouble, Double, IUnivariateIntegration)
|
Namespace:
Accord.Statistics.Distributions.Univariate
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax public static GeneralContinuousDistribution FromDistributionFunction(
DoubleRange support,
Func<double, double> cdf,
IUnivariateIntegration method
)
Public Shared Function FromDistributionFunction (
support As DoubleRange,
cdf As Func(Of Double, Double),
method As IUnivariateIntegration
) As GeneralContinuousDistribution
Request Example
View SourceParameters
- support
- Type: AccordDoubleRange
The distribution's support over the real line. - cdf
- Type: SystemFuncDouble, Double
A cumulative distribution function. - method
- Type: Accord.Math.IntegrationIUnivariateIntegration
The integration method to use for numerical computations.
Return Value
Type:
GeneralContinuousDistributionA
GeneralContinuousDistribution created from the
cdf whose measures and functions are computed using
numerical integration and differentiation.
See Also