COST (GBP)

2.81

0
CDF inv
Evaluates the inverse of the hypergeometric cumulative density function.
Controller:
CodeCogs
Interface
#include <codecogs/statistics/distributions/discrete/hypergeometric/cdf_inv.h>
using namespace Stats::Dists::Discrete::Hypergeometric;
| int | CDF_inv (double p, int a, int b, int n)
Evaluates the inverse of the hypergeometric cumulative density function. |
These functions are available for Microsoft Excel (
Login to download):
| Integer | cc_hypergeometricCDF_inv (Real p, Integer a, Integer b, Integer n) |
Use the following HTML code to embed the calculators within other websites:
| Name | HTML Code |
|---|
CDF_inv
Evaluates the inverse of the hypergeometric cumulative density function. | |
CDF Inv
This function evaluates the inverse of the hypergeometric cumulative density function.
Example 1
#include <iostream>
#include <codecogs/stats/dists/discrete/hypergeometric/cdf_inv.h>
int main()
{
std::cout << "hypergeometric CDF inverse (0.9, 2, 3, 2) = ";
std::cout << Stats::Dists::Discrete::Hypergeometric::CDF_inv(0.9, 2, 3, 2) << std::endl;
return 0;
}
Output:
hypergeometric CDF inverse (0.9, 2, 3, 2) = 1
Authors
- Lucian Bentea (September 2005)
Source Code
Source code is available when you buy a Commercial licence.
Not a member, then Register with CodeCogs. Already a Member, then Login.
You must login to leave a messge