repl.txt (427B)
1 2 {{alias}}( x ) 3 Computes `exp(x)-1`, where `exp(x)` is the natural exponential function. 4 5 Parameters 6 ---------- 7 x: number 8 Input value. 9 10 Returns 11 ------- 12 y: number 13 Function value. 14 15 Examples 16 -------- 17 > var y = {{alias}}( 0.2 ) 18 ~0.221 19 > y = {{alias}}( -9.0 ) 20 ~-1.0 21 > y = {{alias}}( 0.0 ) 22 0.0 23 > y = {{alias}}( NaN ) 24 NaN 25 26 See Also 27 -------- 28