view libcruft/slatec-fn/xdatanh.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 c0532bbaefd7
children
line wrap: on
line source

      subroutine xdatanh (x, result)
      external datanh
      double precision x, result, datanh
      result = datanh (x)
      return
      end