Function divides the value in input a
by the value in input b
. The remainder of the division is passed to the output y
.
Example in Python
y = a % b
Function menu | Block diagram |
---|---|
![]() |
![]() |
Name | Type | Description |
---|---|---|
a |
float, int32 | Dividend |
b |
float, int32 | Divisor |
Name | Type | Description |
---|---|---|
y |
see note | Modulo |
Type of the value at the output
y
corresponds to the type of the value at the inputa
.
Not available