Blame view
fvn_fnlib/zgamma.f
316 Bytes
0c3098aed ChW 02/2010 for t... |
1 |
complex(kind(1.d0)) function zgamma (z) |
38581db0c git-svn-id: https... |
2 3 4 |
implicit none c july 1977 edition. w. fullerton, c3, los alamos scientific lab. c a preliminary version that is portable, but not accurate enough. |
0c3098aed ChW 02/2010 for t... |
5 |
complex(kind(1.d0)) z, zlngam |
38581db0c git-svn-id: https... |
6 7 8 9 10 11 |
external zlngam c zgamma = exp (zlngam(z)) c return end |