Function takes a number at the input x
, receives an absolute value and passes the resulting value to the output y
.
Example in Python
y = abs(x)
Function menu | Block diagram |
---|---|
![]() |
![]() |
Name | Type | Description |
---|---|---|
x |
float, int32 | Input operand |
Name | Type | Description |
---|---|---|
y |
see note | Result |
Type of the value at the output
y
corresponds to the type of the value at the inputx
.
Not available