I have forgotten
my Password

Or login with:

  • Facebookhttp://facebook.com/
  • Googlehttps://www.google.com/accounts/o8/id
  • Yahoohttps://me.yahoo.com
COST (GBP)
this unit 0.62
sub units 0.00
+
0

CDF inv

Evaluates the inverse of the logistic cumulative density function.
Controller: CodeCogs

Interface

C++
Excel

CDF Inv

 
doubleCDF_invdoublex )[inline]
This function evaluates the inverse of the logistic cumulative density function.

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

xThe 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.