
Section 8. Processing and Math Instructions
Parameter
& Data Type
Enter
Dest
The variable in which to store Vp (kPA).
Temp
The variable containing air temperature (dry-bulb °C).
RH
The variable containing RH (%).
WetTemp
The variable containing wet-bulb temperature (°C).
Pressure
The variable containing atmospheric pressure (kPa).
XOR
The XOR function is used to perform a logical exclusion on two expressions.
Syntax
result = expr1 XOR expr2
Remarks
If only one of the expressions evaluates True, result is True. If either
expression is a Null, result is also a Null. When neither expression is a Null,
result is determined according to the following table:
If expr1 is And expr2 is The result is
True True False
True False True
False True True
False False False
The XOR operator also performs a bit-wise comparison of identically
positioned bits in two numeric expressions and sets the corresponding bit in
result according to the following truth table:
If bit in expr1 is And bit in expr2 is The result is
0 0 0
0 1 1
1 0 1
1 1 0
8-36
Comentários a estes Manuais