I have forgotten
my Password

Or login with:

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

CDF inv

viewed 1486 times and licensed 46 times
Evaluates the inverse of the standard normal cumulative density function.
Controller: CodeCogs

Dependents

Info

Interface

C++

CDF Inv

 
doubleCDF_invdoublep )
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

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