We will discuss the Trigonometric and Hyperbolic functions of python for data science in this article.
Trigonometric Functions:
- sin() – When we use this, it returns the sine of the complex numbers pass in argument.
- cos() – In case this function is call, it returns the cosine of the complex numbers pass in argument.
- tan() – When this function is call, it returns the tangent of the complex number pass in argument.
- asin() – When this function is call, it returns the arc tangent of the complex number which was pass as argument.
- acos() – When this function is call, it returns the arc cosine of the complex number pass as argument.
- atan() – When this function is call, it returns the arc tangent of the complex number pass as an argument.
Hyperbolic Functions:
- sinh() – In case this function is call it returns the hyperbolic sine of the complex number pass in argument.
- cosh() – When this function is call, it returns the hyperbolic cosine of the complex number pass in argument.
- tanh() – When this function is call, it will return the hyperbolic tangent of the complex number pass in argument.
- asinh() – When we call this function it returns the inverse hyperbolic sine of the complex number pass in the argument.
- acosh() – When we call this function it returns the inverse hyperbolic cosine of the complex number pass in argument.
- atanh() – When we call this function it returns the inverse hyperbolic tangent of the complex number pass in argument.
To learn more about python for data science, you can check this and this as well.