Click or drag to resize
Accord.NET (logo)

GeneralContinuousDistribution Constructor (DoubleRange, FuncDouble, Double, FuncDouble, Double)

Creates a new GeneralContinuousDistribution with the given PDF and CDF functions.

Namespace:  Accord.Statistics.Distributions.Univariate
Assembly:  Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax
public GeneralContinuousDistribution(
	DoubleRange support,
	Func<double, double> density,
	Func<double, double> distribution
)
Request Example View Source

Parameters

support
Type: AccordDoubleRange
The distribution's support over the real line.
density
Type: SystemFuncDouble, Double
A probability density function.
distribution
Type: SystemFuncDouble, Double
A cumulative distribution function.
See Also