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