LAPACK 3.12.1
LAPACK: Linear Algebra PACKage
Loading...
Searching...
No Matches

◆ 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.

Definition at line 56 of file disnan.f.

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