repl.txt (618B)
1 2 {{alias}}( x, n ) 3 Computes the rising factorial of `x` and `n`. 4 5 If provided a non-integer for `n`, the function returns `NaN`. 6 7 If provided `NaN` as any argument, the function returns `NaN`. 8 9 Parameters 10 ---------- 11 x: number 12 First function parameter. 13 14 n: integer 15 Second function parameter. 16 17 Returns 18 ------- 19 y: number 20 Function value. 21 22 Examples 23 -------- 24 > var v = {{alias}}( 0.9, 5 ) 25 ~94.766 26 > v = {{alias}}( -9.0, 3 ) 27 -504.0 28 > v = {{alias}}( 0.0, 2 ) 29 0.0 30 > v = {{alias}}( 3.0, -2 ) 31 0.5 32 33 See Also 34 -------- 35