erfc()
This article describes erfc() function.
Returns the complementary error function of the input.
Syntax
erfc(
x)
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 |
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.