Modulo

Computes the modulo of integer inputs (A % B), which is the remainder of A / B If B is zero, the result is zero. If A and B are both non-negative the result is non-negative, otherwise the sign of the result is undefined.

Installation

To use this Node, you must enable omni.graph.nodes in the Extension Manager.

Inputs

Name

Type

Description

Default

A (a)

integral_scalers

The dividend of (A % B)

B (b)

integral_scalers

The divisor of (A % B)

Outputs

Name

Type

Description

Default

Result (result)

integral_scalers

Modulo (A % B), the remainder of A / B