CDF inv
Evaluates the inverse of the hypergeometric cumulative density function.
Controller: CodeCogs
Contents
Interface
C++
CDF Inv
intCDF_inv( | double | p | |
int | a | ||
int | b | ||
int | n | ) |
There is an error with your graph parameters for CDF_inv with options p=0:1:20 a=2 b=3 n=2:5:2
Error Message:Function CDF_inv failed. Ensure that: Invalid C++
Example 1
#include <iostream> #include <codecogs/statistics/distributions/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 agree to a GP Licence or buy a Commercial Licence.
Not a member, then Register with CodeCogs. Already a Member, then Login.