COST (GBP)

1.40

0
CDF
Evaluates the log normal cumulative density function.
Controller:
CodeCogs
Dependents
Interface
#include <codecogs/statistics/distributions/continuous/lognormal/cdf.h>
using namespace Stats::Dists::Continuous::LogNormal;
| double | CDF (double x, double m, double s)[inline]
Evaluates the log normal cumulative density function. |
These functions are available for Microsoft Excel (
Login to download):
| Real | cc_lognormalCDF (Real x, Real m, Real s) |
Use the following HTML code to embed the calculators within other websites:
CDF
This function evaluates the log normal cumulative density function.

Example 1
#include <iostream>
#include <codecogs/stats/dists/continuous/lognormal/cdf.h>
int main()
{
std::cout << "log normal CDF (0.3, 1, 2) = ";
std::cout << Stats::Dists::Continuous::LogNormal::CDF(0.3, 1, 2) << std::endl;
return 0;
}
Output:
log normal CDF (0.3, 1, 2) = 0.135234
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