view libcruft/slatec-fn/xbetai.f @ 9872:72d6e0de76c7

fix qp, condest and krylov
author Jaroslav Hajek <highegg@gmail.com>
date Thu, 26 Nov 2009 08:28:07 +0100
parents 82be108cc558
children
line wrap: on
line source

      subroutine xbetai (x, a, b, result)
      external betai
      real x, a, b, result, betai
      result = betai (x, a, b)
      return
      end