erfc()

Returns the complementary error function of the input.

Syntax

erfc(x)

Learn more about syntax conventions.

Parameters

Name Type Required Description
x real ✔️ The value for which to calculate the function.

Returns

Complementary error function of x.

Example

range x from -3 to 3 step 1
| extend erf_x = erfc(x)
x erf_x
-3 1.999977909503001
-2 1.995322265018953
-1 1.842700792949715
0 1
1 0.157299207050285
2 0.00467773498104727
3 2.20904969985854E-05