vec_and

Purpose

Returns a vector containing the results of performing a logical AND operation between the given vectors.

Syntax

d=vec_and(a, b)

Result and argument types

The following table describes the types of the returned value and the function arguments.

d a b
vector4double vector4double vector4double

Result value

The value of each element of the result is the result of a logical AND operation between the corresponding elements of a and b.

Formula

d[0] = a[0] AND b[0]
d[1] = a[1] AND b[1]
d[2] = a[2] AND b[2]
d[3] = a[3] AND b[3]

Example

a =  (-1.0, -1.0,  1.0, 1.0)
b =  (-1.0,  1.0, -1.0, 1.0)
d: (-1.0, -1.0, -1.0, 1.0)