Function adds the values from inputs a
and 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 | First summand |
b |
float, int32 | Second summand |
Name | Type | Description |
---|---|---|
y |
see note | Sum |
Type of the value at the output
y
corresponds to the type of the value at the inputa
.
Not available