view libcruft/slatec-fn/xerfc.f @ 10595:46c8ecc4d565

Add demos to loglogerr.m, semilogxerr.m, & semilogyerr.m
author Ben Abbott <bpabbott@mac.com>
date Fri, 30 Apr 2010 19:08:55 -0400
parents 82be108cc558
children
line wrap: on
line source

      subroutine xerfc (x, result)
      external erfc
      real x, result, erfc
      result = erfc (x)
      return
      end