Next: ETIME, Previous: ERF, Up: Intrinsic Procedures
ERFC — Error functionERFC(X) computes the complementary error function of X.
RESULT = ERFC(X)
| X | The type shall be REAL(*), and it shall be scalar.
|
REAL(*) and it is positive
( 0 \leq erfc (x) \leq 2 .
program test_erfc
real(8) :: x = 0.17_8
x = erfc(x)
end program test_erfc
| Name | Argument | Return type | Standard
|
DERFC(X) | REAL(8) X | REAL(8) | GNU extension
|