cdf.lognormal: Cumulative distribution function for a log-normal...

View source: R/lognormal.R

cdf.lognormalR Documentation

Cumulative distribution function for a log-normal distribution.

Description

Returns a function that evaluates the log-normal CDF at given points.

Usage

## S3 method for class 'lognormal'
cdf(x, ...)

Arguments

x

A lognormal object.

...

Additional arguments (not used).

Value

A function function(q, log.p = FALSE, ...) returning the CDF (or log-CDF) at q.

Examples

x <- lognormal(0, 1)
F <- cdf(x)
F(1)
F(2)

algebraic.dist documentation built on Feb. 27, 2026, 5:06 p.m.