User guide

l Disjunction
z = x or y;
l Exclusiveor
z = x xor y;
l Equivalence
z = x eqv y;
Ifthelogicaloperatorisprecededbyadot'.',theresultwillbeamatrixof1'sand0's
baseduponanelement-by-elementlogicalcomparisonofxandy:
l Element-by-elementlogicalcomplement
z = .not x;
l Element-by-elementconjunction
z = x .and y;
l Element-by-elementdisjunction
z = x .or y;
l Element-by-elementexclusiveor
z = x .xor y;
l Element-by-elementequivalence
z = x .eqv y;
10.5 Other Operators
Assignment Operator
Assignmentsaredonewithoneequalsign:
10-14
GAUSSUser Guide
Operators