WLJS LogoWLJS Notebook

ErlangDistribution

ErlangDistribution[k, λ] represents the Erlang distribution with shape parameter k and rate λ.

Examples

Create Erlang distribution:

dist = ErlangDistribution[3, 1]

Generate random samples:

RandomVariate[ErlangDistribution[5, 2], 10]

Mean of Erlang distribution:

Mean[ErlangDistribution[k, λ]]
(* k/λ *)

Please visit the official Wolfram Language Reference for more details.

On this page