invLogistic
Syntax
invLogistic(mean, s, X)
Arguments
mean is the mean of a logistic distribution.
s is the scale parameter of a logistic distribution.
X is a floating scalar or vector between 0 and 1.
Details
Return the value of a logistic inverse cumulative distribution function.
Examples
invLogistic( 2.31, 0.627, [0.5, 0.3, 0.5, 0.7, 0.1]);
// output
[2.31, 1.778744, 2.31, 2.841256, 0.93234]