Evaluates the inverse of the normal cumulative density function.

You're viewing an older version of this page (#414). View the current version.

View versions (2)

Interface

#include <codecogs/statistics/distributions/continuous/normal/cdf_inv.h>

using namespace Statistics::Distributions::Continuous::Normal;

This function evaluates the inverse of the normal cumulative density function.

Output:

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

\graph x=0.01:0.99 m=0 s=1

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

x
the cumulative cdf
m
the mean of the distribution
s
the standard deviation of the distribution
GPL Licence — free for non commercial use. See Licence details.

Interactive Calculator

x
m
s
Result