User guide
z = x .!= y;
z = x .$/= y;
z = x .$!= y;
l Element-by-elementgreaterthanorequalto
z = x .>= y;
z = x .ge y;
z = x .$>= y;
l Element-by-elementgreaterthan
z = x .> y;
z = x .gt y;
z = x .$> y;
10.4 Logical Operators
ThelogicaloperatorsperformlogicalorBooleanoperationsonnumericvalues.Oninput
anonzerovalueisconsideredTRUEandazerovalueisconsideredFALSE.Thelogical
operatorsreturna1ifTRUEanda0ifFALSE.Decisionsarebasedonthefollowing
truthtables:
Complement
x not x
T F
F T
Conjunction
x y x and y
T T T
T F F
F T F
F F F
10-12
GAUSSUser Guide
Operators










