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 1.00
sub units 1.89
+
0

CDF inv

viewed 1855 times and licensed 70 times
Evaluates the inverse of the normal cumulative density function.
Controller: CodeCogs

Dependents

Info

Interface

C++

CDF Inv

 
doubleCDF_invdoublex
doublem
doubles )[inline]
This function evaluates the inverse of the normal cumulative density function.

Output:

normal CDF inverse (0.453, 2, 5) = 1.409573053

There is an error with your graph parameters for CDF_inv with options x=0.01:0.99 m=0 s=1

Error Message:Function CDF_inv failed. Ensure that: Invalid C++

Example 1

#include <iostream>
#include <iomanip>
#include <codecogs/statistics/distributions/continuous/normal/cdf_inv.h>
 
using namespace std;
 
int main()
{
  cout << setprecision(10);
  cout << "normal CDF inverse (0.453, 2, 5) = ";
  cout << Stats::Dists::Continuous::Normal::CDF_inv(0.453, 2, 5) << endl;
  cout << endl;
  return 0;
}

Parameters

xthe cumulative cdf
mthe mean of the distribution
sthe standard deviation of the distribution

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.