summaryrefslogtreecommitdiff
path: root/2.3-1/src/fortran/lapack/disnan.f
diff options
context:
space:
mode:
Diffstat (limited to '2.3-1/src/fortran/lapack/disnan.f')
-rw-r--r--2.3-1/src/fortran/lapack/disnan.f33
1 files changed, 33 insertions, 0 deletions
diff --git a/2.3-1/src/fortran/lapack/disnan.f b/2.3-1/src/fortran/lapack/disnan.f
new file mode 100644
index 00000000..52003561
--- /dev/null
+++ b/2.3-1/src/fortran/lapack/disnan.f
@@ -0,0 +1,33 @@
+ LOGICAL FUNCTION DISNAN(DIN)
+*
+* -- LAPACK auxiliary routine (version 3.1) --
+* Univ. of Tennessee, Univ. of California Berkeley and NAG Ltd..
+* November 2006
+*
+* .. Scalar Arguments ..
+ DOUBLE PRECISION DIN
+* ..
+*
+* Purpose
+* =======
+*
+* DISNAN returns .TRUE. if its argument is NaN, and .FALSE.
+* otherwise. To be replaced by the Fortran 2003 intrinsic in the
+* future.
+*
+* Arguments
+* =========
+*
+* DIN (input) DOUBLE PRECISION
+* Input to test for NaN.
+*
+* =====================================================================
+*
+* .. External Functions ..
+ LOGICAL DLAISNAN
+ EXTERNAL DLAISNAN
+* ..
+* .. Executable Statements ..
+ DISNAN = DLAISNAN(DIN,DIN)
+ RETURN
+ END