Universal Math Functions
All this function accept undarrays as input, as well as numpy.ndarrays, as well as plain Python data structures. Everything array_like will be converted to an undarray and be processed further.
Power functions
-
upy.pow(a, b)
-
upy.sqrt(a)
Logarithmic functions
-
upy.log(a)
-
upy.log10(a)
-
upy.exp(a)
Trigonometric functions
-
upy.sin(a)
-
upy.cos(a)
-
upy.tan(a)
-
upy.arcsin(a)
-
upy.arccos(a)
-
upy.arctan(a)
-
upy.arctan2(y, x)