sin() | Computes the sine of numeric types | math.sin() or numpy.sin() | example notebook |
cos() | Computes the cosine of numeric types | math.cos() or numpy.cos() | example notebook |
tan() | Computes the tangent of numeric types | math.tan() or numpy.tan() | example notebook |
asin() | Computes the inverse sine of numeric types | math.asin() or numpy.arcsin() | example notebook |
acos() | Computes the inverse cosine of numeric types | math.acos() or numpy.arccos() | example notebook |
atan() | Computes the inverse cosine of numeric types | math.atan() or numpy.arctan() | example notebook |
atan2() | Computes the inverse tangent of (y/x) for numeric types | math.atan2() or numpy.arctan2() | example notebook |
cosh() | Computes the hyperbolic cosine of numeric types | math.cosh() or numpy.cosh() | example notebook |
sinh() | Computes the hyperbolic sine of numeric types | math.sinh() or numpy.sinh() | example notebook |
tanh() | Computes the hyperbolic tangent of numeric types | math.tanh() or numpy.tanh() | example notebook |