CDF inv
Evaluates the inverse of the logistic cumulative density function.
Controller: CodeCogs
Contents
Interface
C++
Excel
CDF Inv
doubleCDF_inv( | double | x | )[inline] |
There is an error with your graph parameters for CDF_inv with options x=0:1
Error Message:Function CDF_inv failed. Ensure that: Invalid C++
Example 1
#include <iostream> #include <codecogs/stats/dists/continuous/logistic/cdf_inv.h> int main() { std::cout <<"logistic CDF inverse (0.993307) = "; std::cout << Stats::Dists::Continuous::Logistic::CDF_inv(0.993307) << std::endl; return 0; }
Output:logistic CDF inverse (0.993307) = 4.999999
Parameters
x The cumulative CDF to invert
Authors
- Lucian Bentea (September 2005)
Source Code
Source code is available when you buy a Commercial licence.
Not a member, then Register with CodeCogs. Already a Member, then Login.