repl.txt (548B)
1 2 {{alias}}( x ) 3 Evaluates the natural logarithm of the gamma function. 4 5 Parameters 6 ---------- 7 x: number 8 Input value. 9 10 Returns 11 ------- 12 y: number 13 Natural logarithm of the gamma function. 14 15 Examples 16 -------- 17 > var y = {{alias}}( 1.0 ) 18 0.0 19 > y = {{alias}}( 2.0 ) 20 0.0 21 > y = {{alias}}( 4.0 ) 22 ~1.792 23 > y = {{alias}}( -0.5 ) 24 ~1.266 25 > y = {{alias}}( 0.5 ) 26 ~0.572 27 > y = {{alias}}( 0.0 ) 28 Infinity 29 > y = {{alias}}( NaN ) 30 NaN 31 32 See Also 33 -------- 34