repl.txt (620B)
1 2 {{alias}}( x ) 3 Evaluates the inverse complementary error function. 4 5 The domain of `x` is restricted to `[0,2]`. If `x` is outside this interval, 6 the function returns `NaN`. 7 8 If provided `NaN`, the function returns `NaN`. 9 10 Parameters 11 ---------- 12 x: number 13 Input value. 14 15 Returns 16 ------- 17 y: number 18 Function value. 19 20 Examples 21 -------- 22 > var y = {{alias}}( 0.5 ) 23 ~0.4769 24 > y = {{alias}}( 0.8 ) 25 ~0.1791 26 > y = {{alias}}( 0.0 ) 27 Infinity 28 > y = {{alias}}( 2.0 ) 29 -Infinity 30 > y = {{alias}}( NaN ) 31 NaN 32 33 See Also 34 -------- 35