view libcruft/slatec-fn/xerf.f @ 12325:5d68277d4496

__gnuplot_has_feature__.m: Don't throw an error if gnuplot isn't installed.
author Ben Abbott <bpabbott@mac.com>
date Tue, 01 Feb 2011 18:58:35 -0500
parents 82be108cc558
children
line wrap: on
line source

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