Blame view

fvn_fnlib/zlbeta.f 457 Bytes
38581db0c   daniau   git-svn-id: https...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
        complex(8) function zlbeta (a, b)
        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) a, b, zlngam
        external zlngam
  c
        if (real(a).le.0.0 .or. real(b).le.0.0) call seteru (
       1  48hclbeta  real part of both arguments must be gt 0, 48, 1, 2)
  c
        zlbeta = zlngam(a) + zlngam(b) - zlngam(a+b)
  c
        return
        end