ERFC_SCALED — Error function ¶RESULT = ERFC_SCALED(X)
ERFC_SCALED(X) computes the exponentially-scaled complementary
error function of X.
Elemental function
| X | The type shall be REAL. |
The return value is of type REAL and of the same kind as X.
program test_erfc_scaled real(8) :: x = 0.17_8 x = erfc_scaled(x) end program test_erfc_scaled
Fortran 2008 and later