other_func()
Apply a square-root transformation to a single value.
Usage
other_func(x)Parameters
x: float-
A numeric value to transform.
Returns
float-
The square root of the absolute value of
x.
See Also
- mega_function()
-
Main function that uses this transformation.
Examples
>>> other_func(4.0)2.0
>>> other_func(0.0)0.0