IDAX.PUNIF_H - High-tail cumulative uniform distribution

The PUNIF_H function returns the probability that the value of a variable that follows the uniform distribution is greater than x.

Syntax

IDAX.PUNIF_H(DOUBLE x, DOUBLE minimum, DOUBLE
maximum)

Parameter descriptions

x
Mandatory.
The value that is to be computed.
Min: <minimum>
Max: <maximum>
Data type: DOUBLE
minimum
Mandatory.
The left border of the uniform interval.
Max: <maximum>
Data type: DOUBLE
maximum
Mandatory.
The right border of the uniform interval.
Min: <minimum>
Data type: DOUBLE

PUNIF_H(x,minimum,maximum)=1-PUNIF(x,minimum,maximum) for all x values, minimum values, and maximum values, where x is between the minimum value and the maximum value.

If the minimum value is not smaller than the maximum value, or if x does not belong to the interval between the minimum value and the maximum value, PUNIF_H(x,minimum,maximum) is null.

Returned information

DOUBLE the cumulative probability distribution from point x to plus infinity.