view libcruft/slatec-fn/xbetai.f @ 8720:dda421a1f1e6

doc/interpreter/mk_doc_cache.m: pass --fill-column=1024 to makeinfo
author John W. Eaton <jwe@octave.org>
date Wed, 11 Feb 2009 01:48:39 -0500
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