13.01.2015 Views

Chapter 4: Programming with MATLAB - FET

Chapter 4: Programming with MATLAB - FET

Chapter 4: Programming with MATLAB - FET

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Operator Name<br />

Logical operators Table 4.3–1<br />

Definition<br />

~ NOT ~A returns an array the same dimension as A; the<br />

new array has ones where A is zero and zeros where<br />

A is nonzero.<br />

& AND A & B returns an array the same dimension as A<br />

and B; the new array has ones where both A and B have<br />

nonzero elements and zeros where either A or B is zero.<br />

| OR A | B returns an array the same dimension as A<br />

and B; the new array has ones where at least one<br />

element in A or B is nonzero and zeros where A<br />

B are both zero.<br />

and<br />

&& Short-Circuit Operator for scalar logical expressions. A && B<br />

AND returns true if both A and B evaluate to true, and<br />

false if they do not.<br />

|| Short-Circuit Operator for scalar logical expressions. A || B<br />

OR returns true if either A or B or both evaluate to true,<br />

Z.R.K<br />

4-11<br />

and false if they do not.

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!