Evaluates the survivor distribution function
(SDF) of this distribution for the specified value.
Namespace:
Extreme.Statistics.Distributions
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public virtual double SurvivorDistributionFunction(
double x
)
Public Overridable Function SurvivorDistributionFunction (
x As Double
) As Double
public:
virtual double SurvivorDistributionFunction(
double x
)
abstract SurvivorDistributionFunction :
x : float -> float
override SurvivorDistributionFunction :
x : float -> float
Parameters
- x
- Type: SystemDouble
A real number.
Return Value
Type:
DoubleThe value of the cumulative distribution function
for the specified value.
The survivor distribution function (SDF)
is the complement of the cumulative distribution function (CDF).
The function gives the probability that a sample from
the distribution will be greater than or equal to
the specified value.
This method is particularly useful for calculating upper
tail probabilities, as round-off error is avoided.
Reference