annotate libcruft/slatec-fn/xdasinh.f @ 11683:738ca2f7c83e release-3-0-x

run-octave.in: fix typo
author David Bateman <dbateman@free.fr>
date Tue, 11 Mar 2008 11:08:43 -0400
parents c0532bbaefd7
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3120
a2371c4a1d50 [project @ 1997-11-30 23:56:25 by jwe]
jwe
parents:
diff changeset
1 subroutine xdasinh (x, result)
4079
c0532bbaefd7 [project @ 2002-09-30 19:08:09 by jwe]
jwe
parents: 3120
diff changeset
2 external dasinh
3120
a2371c4a1d50 [project @ 1997-11-30 23:56:25 by jwe]
jwe
parents:
diff changeset
3 double precision x, result, dasinh
a2371c4a1d50 [project @ 1997-11-30 23:56:25 by jwe]
jwe
parents:
diff changeset
4 result = dasinh (x)
a2371c4a1d50 [project @ 1997-11-30 23:56:25 by jwe]
jwe
parents:
diff changeset
5 return
a2371c4a1d50 [project @ 1997-11-30 23:56:25 by jwe]
jwe
parents:
diff changeset
6 end