FUNCTION
CDF_inv
Evaluates the inverse of the standard normal cumulative density function.
You're viewing an older version of this page (#417). View the current version.
Interface
#include <codecogs/statistics/distributions/continuous/stdnormal/cdf_inv.h>
using namespace Statistics::Distributions::Continuous::Stdnormal;
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
\graph p=0.01:0.99
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.3Interactive Calculator
p
Result
Computing…
Set a range above first to export a graph.
This function's source code is only visible to registered users — documentation and the calculator above are free to use either way. Sign in to see it.