repl.txt (521B)
1 2 {{alias}}( x ) 3 Computes the Bessel function of the first kind of order one. 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.0 ) 18 0.0 19 > y = {{alias}}( 1.0 ) 20 ~0.440 21 > y = {{alias}}( {{alias:@stdlib/constants/float64/pinf}} ) 22 0.0 23 > y = {{alias}}( {{alias:@stdlib/constants/float64/ninf}} ) 24 0.0 25 > y = {{alias}}( NaN ) 26 NaN 27 28 See Also 29 -------- 30