view libcruft/slatec-fn/xdbetai.f @ 4794:6279796dc2b9 ss-2-1-55

[project @ 2004-02-20 21:16:16 by jwe]
author jwe
date Fri, 20 Feb 2004 21:16:17 +0000
parents c0532bbaefd7
children
line wrap: on
line source

      subroutine xdbetai (x, a, b, result)
      external dbetai
      double precision x, a, b, result, dbetai
      result = dbetai (x, a, b)
      return
      end