CXML
COMPL (3sciport)
Computes logical complement
SYNOPSIS
boolean = COMPL( arg )
FUNCTION VALUE
compl Boolean. (Integer, Logical, or Real.)
The bit-wise boolean .NOT. of arg.
ARGUMENTS
arg Integer, Logical, or Real.
The input argument.
DESCRIPTION
The external function COMPL returns the bit-wise boolean .NOT. of arg.
For equations and other information, see Volume 3: UNICOS Math and
Scientific Library Reference Manual SR-2081 7.0, Cray Research, Inc.
NOTES
Since COMPL is not an ANSI Fortran 77 intrinsic function, it must be
declared as an external function of type integer, logical or real. For
example:
EXTERNAL COMPL
LOGICAL COMPL
LOGICAL X
...
X = COMPL( .TRUE. ) ! Same as X = .FALSE.
For more information about boolean functions, see the sciport man page.
CXML Home Page Index of CXML Routines