CDF inv
viewed 1793 times and licensed 58 times
Evaluates the inverse of the normal cumulative density function.
Controller:
CodeCogs
Dependents
Interface
#include <codecogs/statistics/distributions/continuous/normal/cdf_inv.h>
using namespace Stats::Dists::Continuous::Normal;
| double | CDF_inv (double x, double m, double s)[inline]
Evaluates the inverse of the normal cumulative density function. |
These functions are available for Microsoft Excel (
Login to download):
| Real | cc_normalCDF_inv (Real x, Real m, Real s) |
Use the following HTML code to embed the calculators within other websites:
CDF Inv
This function evaluates the inverse of the normal cumulative density function.
Output:
normal CDF inverse (0.453, 2, 5) = 1.409573053
Graph is not currently available
Example 1
#include <iostream>
#include <iomanip>
#include <codecogs/stats/dists/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 |
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.
You must login to leave a messge