boolean = EQV( arg1, arg2 )
eqv Boolean. (Integer, Logical, or Real.) The bit-wise boolean .EQV. of two 64 bit data items.
arg1 Integer, Logical, or Real. A 64 bit input argument. arg2 Integer, Logical, or Real. A 64 bit input argument.
The external function EQV returns the bit-wise boolean .EQV. of the input arguments, arg1 and arg2. For equations and other information, see Volume 3: UNICOS Math and Scientific Library Reference Manual SR-2081 7.0, Cray Research, Inc.
Since EQV 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 EQV INTEGER EQV ... I = EQV( X,'F0F0F0F0F0F0F0F0'X,'C3C3C3C3C3C3C3C3'X ) ! Same as I = 'CCCCCCCCCCCCCCCC'X For more information about boolean functions, see the sciport man page.