Function copies the value at the inputs xN
to the corresponding outputs yN
if the input enable
= True. Otherwise, the value of the outputs yN
will not change.
Example in Python
if enable == True:
y0 = x0
y1 = x1
# ... for each pair of inputs
Function menu | Block diagram |
---|---|
![]() |
![]() |
Name | Type | Description |
---|---|---|
enable |
bool | Copying condition |
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
yN
corresponds 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 yN Setting is locked and synchronized with the setting Number of inputs |