Blame view

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