cdf.weibull_dist: Cumulative distribution function for a Weibull distribution.

View source: R/weibull_dist.R

cdf.weibull_distR Documentation

Cumulative distribution function for a Weibull distribution.

Description

Returns a function that evaluates the Weibull CDF at given points.

Usage

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

Arguments

x

A weibull_dist object.

...

Additional arguments (not used).

Value

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

Examples

x <- weibull_dist(shape = 2, scale = 3)
F <- cdf(x)
F(1)
F(3)

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