LAPACK 3.12.1
LAPACK: Linear Algebra PACKage
Loading...
Searching...
No Matches
sisnan.f
Go to the documentation of this file.
1*> \brief \b SISNAN tests input for NaN.
2*
3* =========== DOCUMENTATION ===========
4*
5* Online html documentation available at
6* http://www.netlib.org/lapack/explore-html/
7*
8*> Download SISNAN + dependencies
9*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/sisnan.f">
10*> [TGZ]</a>
11*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/sisnan.f">
12*> [ZIP]</a>
13*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/sisnan.f">
14*> [TXT]</a>
15*
16* Definition:
17* ===========
18*
19* LOGICAL FUNCTION SISNAN( SIN )
20*
21* .. Scalar Arguments ..
22* REAL, INTENT(IN) :: SIN
23* ..
24*
25*
26*> \par Purpose:
27* =============
28*>
29*> \verbatim
30*>
31*> SISNAN returns .TRUE. if its argument is NaN, and .FALSE.
32*> otherwise. To be replaced by the Fortran 2003 intrinsic in the
33*> future.
34*> \endverbatim
35*
36* Arguments:
37* ==========
38*
39*> \param[in] SIN
40*> \verbatim
41*> SIN is REAL
42*> Input to test for NaN.
43*> \endverbatim
44*
45* Authors:
46* ========
47*
48*> \author Univ. of Tennessee
49*> \author Univ. of California Berkeley
50*> \author Univ. of Colorado Denver
51*> \author NAG Ltd.
52*
53*> \ingroup isnan
54*
55* =====================================================================
56 LOGICAL FUNCTION sisnan( SIN )
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
75 END
logical function sisnan(sin)
SISNAN tests input for NaN.
Definition sisnan.f:57
logical function slaisnan(x, y)
Definition la_xisnan.F90:28