Initial commit
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
FUNCTION erf(x)
|
||||
REAL erf,x
|
||||
CU USES gammp
|
||||
REAL gammp
|
||||
if(x.lt.0.)then
|
||||
erf=-gammp(.5,x**2)
|
||||
else
|
||||
erf=gammp(.5,x**2)
|
||||
endif
|
||||
return
|
||||
END
|
||||
Reference in New Issue
Block a user