diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-08 20:46:52 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-08 20:46:52 -0400 |
commit | fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 (patch) | |
tree | bdda434976bc09c864f2e4fa6f16ba1952b1e555 /pkg/tbtables/fitsio/ftsdnn.f | |
download | iraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz |
Initial commit
Diffstat (limited to 'pkg/tbtables/fitsio/ftsdnn.f')
-rw-r--r-- | pkg/tbtables/fitsio/ftsdnn.f | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/pkg/tbtables/fitsio/ftsdnn.f b/pkg/tbtables/fitsio/ftsdnn.f new file mode 100644 index 00000000..9bd41107 --- /dev/null +++ b/pkg/tbtables/fitsio/ftsdnn.f @@ -0,0 +1,15 @@ +C---------------------------------------------------------------------- + subroutine ftsdnn(value) + +C set a 64-bit pattern equal to an IEEE Not-a-Number value +C A NaN has all the exponent bits=1, and the fractional part +C not=0. +C +C written by Wm Pence, HEASARC/GSFC, February 1991 + + integer value(2) + +C there are many NaN values; choose a simple one in which all bits=1 + value(1)=-1 + value(2)=-1 + end |