Intel® Fortran Compiler Classic and Intel® Fortran Compiler Developer Guide and Reference

ID 767251
Date 9/08/2022
Public

A newer version of this document is available. Customers should click here to go to the newest version.

Document Table of Contents

ISNAN

Elemental Intrinsic Function (Generic): Tests whether IEEE* real (binary32, binary64, and binary128) numbers are Not-a-Number (NaN) values.

result = ISNAN (x)

x

(Input) Must be of type real.

Results

The result type is default logical. The result is .TRUE. if x is an IEEE NaN; otherwise, the result is .FALSE..

Example
  LOGICAL A
  DOUBLE PRECISION B
  ...
  A = ISNAN(B)

A is assigned the value .TRUE. if B is an IEEE NaN; otherwise, the value assigned is .FALSE..