next up previous contents
Next: IALL_SCATTER(ARRAYBASE,INDX1, ..., INDXn, MASK) Up: Specifications of Library Procedures Previous: IALL_PREFIX(ARRAYDIM, MASK, SEGMENT,

IALL_PREFIX(ARRAY, DIM, MASK, SEGMENT, EXCLUSIVE)

Optional Arguments. DIM, MASK, SEGMENT, EXCLUSIVE

Description. Computes a segmented bitwise logical AND scan along dimension DIM of ARRAY.

Class. Transformational function.

Arguments.

ARRAY must be of type integer. It must not be scalar.

DIM (optional) must be scalar and of type integer with a value in the range , where is the rank of ARRAY.

MASK (optional) must be of type logical and must be conformable with ARRAY.

SEGMENT (optional) must be of type logical and must have the same shape as ARRAY.

EXCLUSIVE (optional) must be of type logical and must be scalar.

Result Type, Type Parameter, and Shape. Same as ARRAY.

Result Value. Element of the result has the value IALL((/ /)) where is the (possibly empty) set of elements of ARRAY selected to contribute to by the rules stated in Section 7.4.5.

Example. IALL_PREFIX( (/1,3,2,4,5/), SEGMENT= (/F,F,F,T,T/) ) is [1 1 0 4 4].