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

Example 1
#include <iostream>
#include <codecogs/stats/dists/continuous/lognormal/pdf.h>
int main()
{
std::cout << "log normal PDF (10.3, 2, 5) = ";
std::cout << Stats::Dists::Continuous::LogNormal::PDF(10.3, 2, 5) << std::endl;
return 0;
}
Output:
log normal PDF (10.3, 2, 5) = 0.00772938
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.
You must login to leave a messge