sisnan.f
来自「famous linear algebra library (LAPACK) p」· F 代码 · 共 34 行
F
34 行
LOGICAL FUNCTION SISNAN(SIN)
*
* -- LAPACK auxiliary routine (version 3.1) --
* Univ. of Tennessee, Univ. of California Berkeley and NAG Ltd..
* November 2006
*
* .. Scalar Arguments ..
REAL SIN
* ..
*
* Purpose
* =======
*
* SISNAN returns .TRUE. if its argument is NaN, and .FALSE.
* otherwise. To be replaced by the Fortran 2003 intrinsic in the
* future.
*
* Arguments
* =========
*
* SIN (input) REAL
* Input to test for NaN.
*
* =====================================================================
*
* .. External Functions ..
LOGICAL SLAISNAN
EXTERNAL SLAISNAN
* ..
* .. Executable Statements ..
SISNAN = SLAISNAN(SIN,SIN)
RETURN
END
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?