repl.txt (701B)
1 2 {{alias}}( μ, β ) 3 Returns the excess kurtosis of a Gumbel distribution with location parameter 4 `μ` and scale parameter `β`. 5 6 If provided `NaN` as any argument, the function returns `NaN`. 7 8 If provided `β <= 0`, the function returns `NaN`. 9 10 Parameters 11 ---------- 12 μ: number 13 Location parameter. 14 15 β: number 16 Scale parameter. 17 18 Returns 19 ------- 20 out: number 21 Excess kurtosis. 22 23 Examples 24 -------- 25 > var y = {{alias}}( 0.0, 1.0 ) 26 2.4 27 > y = {{alias}}( 4.0, 2.0 ) 28 2.4 29 > y = {{alias}}( NaN, 1.0 ) 30 NaN 31 > y = {{alias}}( 0.0, NaN ) 32 NaN 33 > y = {{alias}}( 0.0, 0.0 ) 34 NaN 35 36 See Also 37 -------- 38