IDAX.PLOGIS - Cumulative logistic distribution
The PLOGIS function returns the probability that the value of a variable that follows the logistic distribution is smaller or equal to x.
Syntax
IDAX.PLOGIS(DOUBLE x, DOUBLE mean, DOUBLE scale)Parameter descriptions
- x
- Mandatory.
- mean
- Mandatory.
- scale
- Mandatory.
PLOGIS(x,mean,scale)=1./(1+exp(-(x-mean)/scale)) for all x values and mean values, and for all positive scale values.
Returned information
DOUBLE the cumulative probability distribution from minus infinity to point x.