erfc function

double erfc(
  1. num x
)

Returns the complementary error function.

Implementation

double erfc(num x) => 1.0 - erf(x);