FUNCTION
CDF
Evaluates the log normal cumulative density function.
Interface
#include <codecogs/statistics/distributions/continuous/lognormal/cdf.h>
using namespace Statistics::Distributions::Continuous::Lognormal;
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.135234Interactive Calculator
x
m
s
Result
Computing…
Set a range above first to export a graph.
This function's source code is only visible to registered users — documentation and the calculator above are free to use either way. Sign in to see it.