Bits
Nor
compute bit-wise nor of the inputs
Calling Sequence
Parameters
Description
Examples
Nor(num1, num2)
Nor(num1, num2, options)
num1
-
an integer
num2
options
optional arguments
The Nor command computes the bit-wise logical nor of the inputs returning in terms of a number. All bits that are unset in both inputs will be set in the output.
Nor takes one optional argument, bits=number that specifies the number of bits to be considered in the input. All bits past the specified number are truncated.
Use of this function requires that bits be set, either as an argument to Nor or globally via Settings.
with⁡Bits:
num1≔Join⁡1,1,0,0,0,1,0,1,0,1,1,0,1,1,1
num1≔30371
num2≔Join⁡0,1,1,0,0,1,0,0,1,0,0,0,1,0,1
num2≔20774
The following number represents the Nor of num1,num2
num3≔Join⁡0,0,0,1,1,0,1,0,0,0,0,1,0,0,0
num3≔2136
Compare:
num3,Nor(num1,num2);
2136,2136
Negative inputs and outputs
Settings⁡defaultbits=8,negativeout=true:
Nor(-1,12);
0
Nor(0,-128);
127
See Also
Join
Settings
Download Help Document