view libcruft/slatec-fn/xerf.f @ 12583:bb29b58e650c release-3-4-x

abandon release-3-4-x branch in favor of workflow using stable and default branches and merging stable to default periodically
author John W. Eaton <jwe@octave.org>
date Fri, 08 Apr 2011 09:06:04 -0400
parents 82be108cc558
children
line wrap: on
line source

      subroutine xerf (x, result)
      external erf
      real x, result, erf
      result = erf (x)
      return
      end