9.96. ERFC

9.96 ERFC — Error function

Description:

ERFC(X) computes the complementary error function of X.

Standard:

Fortran 2008 and later

Class:

Elemental function

Syntax:

RESULT = ERFC(X)

Arguments:
X The type shall be REAL.
Return value:

The return value is of type REAL and of the same kind as X. It lies in the range 0 \leq erfc (x) \leq 2 .

Example:
program test_erfc
  real(8) :: x = 0.17_8
  x = erfc(x)
end program test_erfc
Specific names:
Name Argument Return type Standard
DERFC(X) REAL(8) X REAL(8) GNU extension

© Free Software Foundation
Licensed under the GNU Free Documentation License, Version 1.3.
https://gcc.gnu.org/onlinedocs/gcc-7.1.0/gfortran/ERFC.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部