math.erfc()
is stands for “error function complement” and returns the complementary error function at the given real argument.
math.erfc(x)
copy
Where, parameter x
is a real number. If x
is not a real number, a TypeError
is raised.
The function returns a floating point value which is the value of the error function at x
.