cdfGamma

Syntax

cdfGamma(shape, scale, X)

Arguments

The shape parameter shape is a positive floating number.

The scale parameter scale is a positive floating number.

X is a numeric scalar or vector.

Details

Return the value of the cumulative distribution function of a gamma distribution.

Examples

$ cdfGamma(2.31, 0.627, [0.001, 0.5, 0.999]);
[0, 0.127367, 0.38032]

$ cdfGamma(2.31,0.627, [0.1, 0.3, 0.5, 0.7, 0.9]);
[0.004754, 0.048388, 0.127367, 0.225351, 0.329391]