Learn R Programming

CVXR (version 1.9.1)

And: Logical AND

Description

Returns 1 if and only if all arguments equal 1, and 0 otherwise. For two operands, can also be written with the & operator: x & y.

Usage

And(..., id = NULL)

Value

An And expression.

Arguments

...

Two or more boolean Variables or logic expressions.

id

Optional integer ID (internal use).

See Also

Not(), Or(), Xor(), implies(), iff()

Examples

Run this code
if (FALSE) {
x <- Variable(boolean = TRUE)
y <- Variable(boolean = TRUE)
both <- x & y            # operator syntax
both <- And(x, y)        # functional syntax
all3 <- And(x, y, z)     # n-ary
}

Run the code above in your browser using DataLab