view libcruft/slatec-fn/xdbetai.f @ 12163:55ebf5df9ea6

Use Automake and GNU Make variables for increased portability in DLD-FUNCTIONS/*.oct creation
author Rik <octave@nomad.inbox5.com>
date Tue, 25 Jan 2011 21:38:05 -0800
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