FUNCTION
CDF_inv
Evaluates the inverse of the normal cumulative density function.
You're viewing an older version of this page (#414). View the current version.
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
Interactive Calculator
x
m
s
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.