Next: IRAND, Previous: IOR, Up: Intrinsic Procedures
IPARITY
— Bitwise XOR of array elementsTRUE
.
RESULT = IPARITY(ARRAY[, MASK])
|
RESULT = IPARITY(ARRAY, DIM[, MASK])
|
ARRAY | Shall be an array of type INTEGER
|
DIM | (Optional) shall be a scalar of type
INTEGER with a value in the range from 1 to n, where n
equals the rank of ARRAY.
|
MASK | (Optional) shall be of type LOGICAL
and either be a scalar or an array of the same shape as ARRAY.
|
If DIM is absent, a scalar with the bitwise XOR of all elements in
ARRAY is returned. Otherwise, an array of rank n-1, where n equals
the rank of ARRAY, and a shape similar to that of ARRAY with
dimension DIM dropped is returned.
PROGRAM test_iparity INTEGER(1) :: a(2) a(1) = b'00100100' a(2) = b'01101010' ! prints 01001110 PRINT '(b8.8)', IPARITY(a) END PROGRAM