LAPACK  3.9.0
LAPACK: Linear Algebra PACKage

◆ sisnan()

logical function sisnan ( real, intent(in)  SIN)

SISNAN tests input for NaN.

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

Purpose:
 SISNAN returns .TRUE. if its argument is NaN, and .FALSE.
 otherwise.  To be replaced by the Fortran 2003 intrinsic in the
 future.
Parameters
[in]SIN
          SIN is REAL
          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 sisnan.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  REAL, INTENT(IN) :: SIN
69 * ..
70 *
71 * =====================================================================
72 *
73 * .. External Functions ..
74  LOGICAL SLAISNAN
75  EXTERNAL slaisnan
76 * ..
77 * .. Executable Statements ..
78  sisnan = slaisnan(sin,sin)
79  RETURN
Here is the call graph for this function:
Here is the caller graph for this function:
slaisnan
logical function slaisnan(SIN1, SIN2)
SLAISNAN tests input for NaN by comparing two arguments for inequality.
Definition: slaisnan.f:76
sisnan
logical function sisnan(SIN)
SISNAN tests input for NaN.
Definition: sisnan.f:61