view libcruft/slatec-fn/xbetai.f @ 7961:a5d1e27ee1f4 ss-3-1-51

3.1.51 snapshot
author John W. Eaton <jwe@octave.org>
date Tue, 22 Jul 2008 11:40:48 -0400
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