CDF inv
Evaluates the inverse of the standard normal cumulative density function.
Controller:
CodeCogs
Dependents
Interface
#include <codecogs/statistics/distributions/continuous/stdnormal/cdf_inv.h>
using namespace Stats::Dists::Continuous::StdNormal;
| double | CDF_inv (double p)
Evaluates the inverse of the standard normal cumulative density function. |
These functions are available for Microsoft Excel (
Login to download):
| Real | cc_stdnormalCDF_inv (Real p) |
Use the following HTML code to embed the calculators within other websites:
CDF Inv
This function evaluates the inverse of the standard normal cumulative density function.
References:
Jeremy Lea's implementation found at: http://home.online.no/~pjacklam/notes/invnorm/impl/lea/lea.c

Example 1
#include <iostream>
#include <codecogs/stats/dists/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.
You must login to leave a messge