Click or drag to resize
Accord.NET (logo)

UnivariateContinuousDistributionGetRange Method

Gets the distribution range within a given percentile.

Namespace:  Accord.Statistics.Distributions.Univariate
Assembly:  Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax
public virtual DoubleRange GetRange(
	double percentile
)
Request Example View Source

Parameters

percentile
Type: SystemDouble
The percentile at which the distribution ranges will be returned.

Field Value

Type: DoubleRange
A DoubleRange object containing the minimum value for the distribution value, and the third quartile (Q2) as the maximum.

Implements

IUnivariateDistributionGetRange(Double)
Remarks
If 0.25 is passed as the percentile argument, this function returns the same as the Quartiles function.
See Also