annotate libcruft/slatec-fn/xderf.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
3120
a2371c4a1d50 [project @ 1997-11-30 23:56:25 by jwe]
jwe
parents:
diff changeset
1 subroutine xderf (x, result)
4079
c0532bbaefd7 [project @ 2002-09-30 19:08:09 by jwe]
jwe
parents: 3120
diff changeset
2 external derf
3120
a2371c4a1d50 [project @ 1997-11-30 23:56:25 by jwe]
jwe
parents:
diff changeset
3 double precision x, result, derf
a2371c4a1d50 [project @ 1997-11-30 23:56:25 by jwe]
jwe
parents:
diff changeset
4 result = derf (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