view libcruft/slatec-fn/xdbetai.f @ 14316:0216b5d6c80c stable

semilogx.m: Correct incorrectly coded %!test. * semilogx.m: Correct incorrectly coded %!test.
author Rik <octave@nomad.inbox5.com>
date Thu, 02 Feb 2012 10:08:35 -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