CDF inv
Evaluates the inverse of the log normal cumulative density function.
Controller: CodeCogs
Contents
Dependents
Interface
C++
Excel
CDF Inv
doubleCDF_inv( | double | p | |
double | m | ||
double | s | )[inline] |
MISSING IMAGE!
1/lognormal_cdf_inv-378.png cannot be found in /users/1/lognormal_cdf_inv-378.png. Please contact the submission author.
Example 1
#include <iostream> #include <codecogs/stats/dists/continuous/lognormal/cdf_inv.h> int main() { std::cout << "log normal CDF inverse (0.3, 2, 5) = "; std::cout << Stats::Dists::Continuous::LogNormal::CDF_inv(0.3, 2, 5) << std::endl; return 0; }
Output:log normal CDF inverse (0.3, 2, 5) = 0.536868
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.