shortcutand

Short circuit 'AND' operator, &&

Syntax

  • C = A && B

Input argument

  • A - a variable

  • B - a variable

Output argument

  • C - result of A && B

Description

C = A && B performs a logical AND operation, the second operand is evaluated only when the result is not fully determined by the first operand.

Example

A = [6 8 0; 0 3 89; 15 0 0]
B = [66 56 0; 11 33 55; -11 0 0]
C = A && B

See also

and, ||.

History

Author

Allan CORNET

Last updated