Function takes a number at the input x
, scales it according to the settings and passes the result to the output y
.
Example in Python
# K and B - coefficients from function settings
y = (x * K) + B
Function menu | Block diagram |
---|---|
![]() |
![]() |
Name | Type | Description |
---|---|---|
x |
float | Input value |
Name | Type | Description |
---|---|---|
y |
float | Result |
Name | Description |
---|---|
Coefficient (K) |
Coefficient by which the input value x will be multiplied |
Offset (B) |
Offset that will be added to the intermediate result after multiplication by the coefficient |