Blame view
fvn_fnlib/zlbeta.f
475 Bytes
0c3098aed ChW 02/2010 for t... |
1 |
complex(kind(1.d0)) function zlbeta (a, b) |
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)) a, b, zlngam |
38581db0c git-svn-id: https... |
6 7 8 9 10 11 12 13 14 |
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 |