FUNCTION
CDF
Evaluates the logistic cumulative density function.
Interface
#include <codecogs/statistics/distributions/continuous/logistic/cdf.h>
using namespace Statistics::Distributions::Continuous::Logistic;
This function evaluates the logistic cumulative density function.
\graph x=-10:10
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.993307Parameters
x
The argument of the CDF
Returns
The cumulative density
Interactive Calculator
x
Result
Computing…
Set a range above first to export a graph.
This function's source code is only visible to registered users — documentation and the calculator above are free to use either way. Sign in to see it.