erfc.f90
来自「蒙特卡罗的一个程序分析 与大家分享 共同研究」· F90 代码 · 共 27 行
F90
27 行
real function erfc(x) ! # MS Fortran ! Complementary error function from Numerical Recipes.
implicit none
real :: x real :: t,z
z = abs(x) t = 1.0 / ( 1.0 + 0.5 * z ) erfc = t * exp( -z * z - 1.26551223 + t * & ( 1.00002368 + t * ( 0.37409196 + t * & ( 0.09678418 + t * (-0.18628806 + t * & ( 0.27886807 + t * (-1.13520398 + t * & ( 1.48851587 + t * (-0.82215223 + t * 0.17087277 ))))))))) if ( x.lt.0.0 ) erfc = 2.0 - erfc end function erfc
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?