Programming Previous page   Next Page

Logical Operators

MATLAB offers three types of logical operators and functions:

The values returned by MATLAB logical operators and functions, with the exception of bit-wise functions, are of type logical and are suitable for use with logical indexing.

Element-Wise Operators and Functions

The following logical operators and functions perform element-wise logical operations on their inputs to produce a like-sized output array. The examples shown in the following table use vector inputs A and B, where

Operator
Description
Example
&
Returns 1 for every element location that is true (nonzero) in both arrays, and 0 for all other elements.
A & B = 01001
|
Returns 1 for every element location that is true (nonzero) in either one or the other, or both arrays, and 0 for all other elements.
A | B = 11101
~
Complements each element of the input array, A.
~A = 10010
xor
Returns 1 for every element location that is true (nonzero) in only one array, and 0 for all other elements.
xor(A,B)=10100

For operators and functions that take two array operands, (&, |, and xor), both arrays must have equal dimensions, with each dimension being the same size. The one exception to this is where one operand is a scalar and the other is not. In this case, MATLAB tests the scalar against every element of the other operand.

Operator Overloading.   You can overload the &, |, and ~ operators to make their behavior dependent upon the data type on which they are being used. Each of these operators has a representative function that is called whenever that operator is used. These are shown in the table below.

Logical Operation
Equivalent Function
A & B
and(A, B)
A | B
or(A, B)
~A
not(A)

Other Array Functions.   Two other MATLAB functions that operate logically on arrays, but not in an element-wise fashion, are any and all. These functions show whether any or all elements of a vector, or a vector within a matrix or an array, are nonzero.

When used on a matrix, any and all operate on the columns of the matrix. When used on an N-dimensional array, they operate on the first nonsingleton dimension of the array. Or, you can specify an additional dimension input to operate on a specific dimension of the array.

The examples shown in the following table use array input A, where

Function
Description
Example
any(A)
Returns 1 for a vector where any element of the vector is true (nonzero), and 0 if no elements are true.
any(A)
ans =
0 1 1

all(A)
Returns 1 for a vector where all elements of the vector are true (nonzero), and 0 if all elements are not true.
all(A)
ans =
0 1 0

Logical Expressions Using the find Function.   The find function determines the indices of array elements that meet a given logical condition. The function is useful for creating masks and index matrices. In its most general form, find returns a single vector of indices. This vector can be used to index into arrays of any size or shape.

For example,

The last two statements of the previous example can be replaced with this one statement:

You can also use find to obtain both the row and column indices of a rectangular matrix for the array values that meet the logical condition:

Bit-Wise Functions

The following functions perform bit-wise logical operations on nonnegative integer inputs. Inputs may be scalar or in arrays. If in arrays, these functions produce a like-sized output array.

The examples shown in the following table use scalar inputs A and B, where

Function
Description
Example

bitand

Returns the bit-wise AND of two nonnegative integer arguments.

bitand(A,B) = 20
(binary 10100)

bitor

Returns the bit-wise OR of two nonnegative integer arguments.

bitor(A,B) = 29
(binary 11101)

bitcmp

Returns the bit-wise complement as an n-bit number, where n is the second input argument to bitcmp.

bitcmp(A,5) = 3
(binary 00011)

bitxor

Returns the bit-wise exclusive OR of two nonnegative integer arguments.

bitxor(A,B) = 9
(binary 01001)

Short-Circuit Operators

The following operators perform AND and OR operations on logical expressions containing scalar values. They are short-circuit operators in that they evaluate their second operand only when the result is not fully determined by the first operand.

Operator
Description
&&
Returns logical 1 (true) if both inputs evaluate to true, and logical 0 (false) if they do not.
||
Returns logical 1 (true) if either input, or both, evaluate to true, and logical 0 (false) if they do not.

The statement shown here performs an AND of two logical terms, A and B:

If A equals zero, then the entire expression will evaluate to logical 0 (false), regardless of the value of B. Under these circumstances, there is no need to evaluate B because the result is already known. In this case, MATLAB short-circuits the statement by evaluating only the first term.

A similar case is when you OR two terms and the first term is true. Again, regardless of the value of B, the statement will evaluate to true. There is no need to evaluate the second term, and MATLAB does not do so.

Advantage of Short-Circuiting.   You can use the short-circuit operators to evaluate an expression only when certain conditions are satisfied. For example, you want to execute an M-file function only if the M-file resides on the current MATLAB path.

Short-circuiting keeps the following code from generating an error when the file, myfun.m, cannot be found:

Similarly, this statement avoids divide-by-zero errors when b equals zero:

You can also use the && and || operators in if and while statements to take advantage of their short-circuiting behavior:


Previous page  Relational Operators Operator Precedence Next page

© 1994-2005 The MathWorks, Inc.