COST (GBP)

1.39

0
CDF
Evaluates the hypergeometric cumulative density function.
Controller:
CodeCogs
Interface
#include <codecogs/statistics/distributions/discrete/hypergeometric/cdf.h>
using namespace Stats::Dists::Discrete::Hypergeometric;
| double | CDF (int x, int a, int b, int n)
Evaluates the hypergeometric cumulative density function. |
These functions are available for Microsoft Excel (
Login to download):
| Real | cc_hypergeometricCDF (Integer x, Integer a, Integer b, Integer n) |
Use the following HTML code to embed the calculators within other websites:
| Name | HTML Code |
|---|
CDF
Evaluates the hypergeometric cumulative density function. | |
CDF
This function evaluates the hypergeometric cumulative density function.
Example 1
#include <iostream>
#include <codecogs/stats/dists/discrete/hypergeometric/cdf.h>
int main()
{
std::cout << "hypergeometric CDF (6, 17, 9, 8) = ";
std::cout << Stats::Dists::Discrete::Hypergeometric::CDF(6, 17, 9, 8) << std::endl;
return 0;
}
Output:
hypergeometric CDF (6, 17, 9, 8) = 0.872403
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