view libcruft/slatec-fn/xdasinh.f @ 14187:53a9c916ba2f stable

doc: include tips for installing build dependencies on specific systems * install.txi: Add info for install build deps with apt-get and yum.
author John W. Eaton <jwe@octave.org>
date Tue, 10 Jan 2012 15:25:35 -0500
parents c0532bbaefd7
children
line wrap: on
line source

      subroutine xdasinh (x, result)
      external dasinh
      double precision x, result, dasinh
      result = dasinh (x)
      return
      end