time-to-botec

Benchmark sampling in different programming languages
Log | Files | Refs | README

repl.txt (492B)


      1 
      2 {{alias}}( λ )
      3     Returns the excess kurtosis of a Poisson distribution.
      4 
      5     If provided `NaN` as any argument, the function returns `NaN`.
      6 
      7     If provided a non-positive value for `λ`, the function returns `NaN`.
      8 
      9     Parameters
     10     ----------
     11     λ: number
     12         Mean parameter.
     13 
     14     Returns
     15     -------
     16     out: number
     17         Excess kurtosis.
     18 
     19     Examples
     20     --------
     21     > var v = {{alias}}( 11.0 )
     22     ~0.091
     23     > v = {{alias}}( 4.5 )
     24     ~0.222
     25 
     26     See Also
     27     --------
     28