FUNCTION
CDF_inv
Evaluates the inverse of the log normal cumulative density function.
Interface
#include <codecogs/statistics/distributions/continuous/lognormal/cdf_inv.h>
using namespace Statistics::Distributions::Continuous::Lognormal;
This function evaluates the inverse of the log normal cumulative density function.

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.536868Interactive Calculator
p
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.