view libcruft/slatec-fn/xatanh.f @ 12163:55ebf5df9ea6

Use Automake and GNU Make variables for increased portability in DLD-FUNCTIONS/*.oct creation
author Rik <octave@nomad.inbox5.com>
date Tue, 25 Jan 2011 21:38:05 -0800
parents 82be108cc558
children
line wrap: on
line source

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