Nor - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

Bits

  

Nor

  

compute bit-wise nor of the inputs

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

Nor(num1, num2)

Nor(num1, num2, options)

Parameters

num1

-

an integer

num2

-

an integer

options

-

optional arguments

Description

• 

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.

Examples

(1)

(2)

The following number represents the Nor of num1,num2

(3)

Compare:

num3,Nor(num1,num2);

(4)

Negative inputs and outputs

Nor(-1,12);

(5)

Nor(0,-128);

(6)

See Also

Bits

Join

Settings

 


Download Help Document