Function copies the value at the input xN to the corresponding output yN.
Example in Python
y0 = x0
y1 = x1
# ... for each pair of inputs
| Function menu | Block diagram |
|---|---|
![]() |
![]() |
| Name | Type | Description |
|---|---|---|
x0 |
float, int32, bool | Operand at input 0 |
| ... | ... | ... |
xN |
float, int32, bool | Operand at input N-1 Number of inputs adjusted by setting Number of inputs |
| Name | Type | Description |
|---|---|---|
y0 |
see note | Result 0 |
| ... | ... | ... |
yN |
see note | Result N-1 Number of outputs adjusted by setting Number of outputs |
Type of the value at the output
yNcorresponds to the type of the value at the inputxN
| Name | Description |
|---|---|
| Number of inputs | Setting adjusts the number of inputs xN |
| Number of outputs | Setting adjusts the number of outputs yNSetting is locked and synchronized with the setting Number of inputs |