view libcruft/slatec-fn/xbetai.f @ 10594:4b421123fd17

__errplot__.m: Fix bug parsing errorbar style.
author Ben Abbott <bpabbott@mac.com>
date Fri, 30 Apr 2010 18:28:21 -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