view libcruft/slatec-fn/xdbetai.f @ 5077:19cb76761269

[project @ 2004-11-12 05:26:26 by jwe]
author jwe
date Fri, 12 Nov 2004 05:26:27 +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