annotate libcruft/slatec-fn/xdgami.f @ 7948:af10baa63915 ss-3-1-50

3.1.50 snapshot
author John W. Eaton <jwe@octave.org>
date Fri, 18 Jul 2008 17:42:48 -0400
parents c0532bbaefd7
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3162
7c96e85c76db [project @ 1998-04-08 18:19:35 by jwe]
jwe
parents: 3120
diff changeset
1 subroutine xdgami (a, x, result)
4079
c0532bbaefd7 [project @ 2002-09-30 19:08:09 by jwe]
jwe
parents: 3162
diff changeset
2 external dgami
3162
7c96e85c76db [project @ 1998-04-08 18:19:35 by jwe]
jwe
parents: 3120
diff changeset
3 double precision a, x, result, dgami
7c96e85c76db [project @ 1998-04-08 18:19:35 by jwe]
jwe
parents: 3120
diff changeset
4 result = dgami (a, x)
3120
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