GAMMA.DIST function

GAMMA.DIST(Value, Alpha, Beta, IsCumulative) GAMMA.DIST(Value; Alpha; Beta; IsCumulative)

Value

Number or { Number }

A value at which to evaluate the function.

Alpha

Number or { Number }

A parameter to the distribution.

Beta

Number or { Number }

A parameter to the distribution.

IsCumulative

Logical or { Logical }

FALSE to calculate the probability density function and TRUE to calculate the cumulative distribution function.

Returns

Number or { Number }

A value for a Gamma distribution.

Returns a value for a Gamma distribution.

Example

GAMMA.DIST(2, 1, 1, TRUE)GAMMA.DIST(2; 1; 1; TRUE)

Returns roughly 0.86.