LAPACK  3.9.0
LAPACK: Linear Algebra PACKage

◆ disnan()

logical function disnan ( double precision, intent(in)  DIN)

DISNAN tests input for NaN.

Download DISNAN + dependencies [TGZ] [ZIP] [TXT]

Purpose:
 DISNAN returns .TRUE. if its argument is NaN, and .FALSE.
 otherwise.  To be replaced by the Fortran 2003 intrinsic in the
 future.
Parameters
[in]DIN
          DIN is DOUBLE PRECISION
          Input to test for NaN.
Author
Univ. of Tennessee
Univ. of California Berkeley
Univ. of Colorado Denver
NAG Ltd.
Date
June 2017

Definition at line 61 of file disnan.f.

61 *
62 * -- LAPACK auxiliary routine (version 3.7.1) --
63 * -- LAPACK is a software package provided by Univ. of Tennessee, --
64 * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
65 * June 2017
66 *
67 * .. Scalar Arguments ..
68  DOUBLE PRECISION, INTENT(IN) :: DIN
69 * ..
70 *
71 * =====================================================================
72 *
73 * .. External Functions ..
74  LOGICAL DLAISNAN
75  EXTERNAL dlaisnan
76 * ..
77 * .. Executable Statements ..
78  disnan = dlaisnan(din,din)
79  RETURN
Here is the call graph for this function:
Here is the caller graph for this function:
dlaisnan
logical function dlaisnan(DIN1, DIN2)
DLAISNAN tests input for NaN by comparing two arguments for inequality.
Definition: dlaisnan.f:76
disnan
logical function disnan(DIN)
DISNAN tests input for NaN.
Definition: disnan.f:61