ContinuousDistribution.TwoTailedProbability Method

Returns the probability that a sample from the distribution deviates from the mean more than the specified value.

Definition

Namespace: Extreme.Statistics.Distributions
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public double TwoTailedProbability(
	double x
)

Parameters

x  Double
A real number.

Return Value

Double
The probability that a sample from the distribution deviates more from the distribution mean than x.

Remarks

For a symmetrical distribution with zero mean, like the normal distribution or the student t distribution, this method returns the probability that the absolute value of a sample is greater than the absolute value of x.

See Also