ERFC_SCALED — Error function¶
- ERFC_SCALED(X)¶
ERFC_SCALED(X)computes the exponentially-scaled complementary error function ofX.- Parameters
X – The type shall be
REAL.- Returns
The return value is of type
REALand of the same kind asX.
Standard:Fortran 2008 and later
Class:Elemental function
Syntax:RESULT = ERFC_SCALED(X)
Example:program test_erfc_scaled real(8) :: x = 0.17_8 x = erfc_scaled(x) end program test_erfc_scaled