view libcruft/slatec-fn/xatanh.f @ 9636:74be4b7273e4 ss-3-3-50

update version info for snapshot
author John W. Eaton <jwe@octave.org>
date Sat, 12 Sep 2009 06:55:13 -0400
parents 82be108cc558
children
line wrap: on
line source

      subroutine xatanh (x, result)
      external atanh
      real x, result, atanh
      result = atanh (x)
      return
      end