Function divides the value in input a
by the value in input b
. The result of the operation 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 | Quotient |
Type of the value at the output
y
corresponds to the type of the value at the inputa
.
Not available