CDF inv
Evaluates the inverse of the standard normal cumulative density function.
Controller: CodeCogs
Contents
Dependents
Interface
C++
CDF Inv
doubleCDF_inv( | double | p | ) |
References:
Jeremy Lea's implementation found at: http://home.online.no/~pjacklam/notes/invnorm/impl/lea/lea.cThere is an error with your graph parameters for CDF_inv with options p=0.01:0.99
Error Message:Function CDF_inv failed. Ensure that: Invalid C++
Example 1
#include <iostream> #include <codecogs/statistics/distributions/continuous/stdnormal/cdf_inv.h> using namespace std; int main() { cout << "standard normal CDF inverse (0.6179114) = "; cout << Stats::Dists::Continuous::StdNormal::CDF_inv(0.6179114) << endl; return 0; }
Output:standard normal CDF inverse (0.6179114) = 0.3
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.