Python math.erfc() Method

Math Methods : Print the complementary error function for different numbers

Definition and Usage

The math.erfc() method returns the complementary error function of a number.

This method accepts a value between - inf and + inf, and returns a value between 0 and 2.

Syntax

math.erfc(x)

Parameter Values

Parameter Description
x Required. A number to find the complementary error function of

Technical Details

Return Value: A float value, representing the complementary error function of a number
Python Version: 3.2