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