diff options
author | jofret | 2008-04-11 09:46:18 +0000 |
---|---|---|
committer | jofret | 2008-04-11 09:46:18 +0000 |
commit | c679afbd8d08c322d8323db5f57e0ab31db0cfca (patch) | |
tree | b308487f2ba1252003bbd964a12437e70aa6c6b1 /src/lib/lapack/disnan.f | |
parent | dd0287279b0299e0446d6b9aa9b028814dd30137 (diff) | |
download | scilab2c-c679afbd8d08c322d8323db5f57e0ab31db0cfca.tar.gz scilab2c-c679afbd8d08c322d8323db5f57e0ab31db0cfca.tar.bz2 scilab2c-c679afbd8d08c322d8323db5f57e0ab31db0cfca.zip |
Adding LAPACK and compilation process
Diffstat (limited to 'src/lib/lapack/disnan.f')
-rw-r--r-- | src/lib/lapack/disnan.f | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/lib/lapack/disnan.f b/src/lib/lapack/disnan.f new file mode 100644 index 00000000..52003561 --- /dev/null +++ b/src/lib/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 |