view libcruft/slatec-fn/xdbetai.f @ 10844:2a99f746b1d7

Added tag ss-3-3-52 for changeset 229675bb7647
author John W. Eaton <jwe@octave.org>
date Sun, 01 Aug 2010 14:49:11 -0400
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