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

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

Definition at line 56 of file sisnan.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 REAL, INTENT(IN) :: SIN
64* ..
65*
66* =====================================================================
67*
68* .. External Functions ..
69 LOGICAL SLAISNAN
70 EXTERNAL slaisnan
71* ..
72* .. Executable Statements ..
73 sisnan = slaisnan(sin,sin)
74 RETURN
logical function sisnan(sin)
SISNAN tests input for NaN.
Definition sisnan.f:57
logical function slaisnan(x, y)
Definition la_xisnan.F90:28
Here is the call graph for this function:
Here is the caller graph for this function: