Trigonometric Operations using openpyxl in Excel:

Simple Trigonometric functions in Python for Data Science:

  • =SIN(Number) – It will return the sine of an angle. The number is angle in radians.
  • =COS(Number) – It will return the cosine of an angle
  • =TAN(Number) - It will return the tangent of an angle
  • =CSC(Number) - It will return the cosecant of an angle
  • =SEC(Number) - It will return the secant of an angle
  • =COT(Number) - It will return the cotangent of an angle

OUTPUT:

Using Hyperbolic trigonometric functions:

  • =SINH(Number) - It will return the hyperbolic sine of an angle.
  • =COSH(Number) - It will return the hyperbolic cosine of an angle.
  • =TANH(Number) - It will return the hyperbolic tangent of an angle.
  • =CSCH(Number) - It will return the hyperbolic cosecant of an angle.
  • =SECH(Number) - It will return the hyperbolic secant of an angle.
  • =COTH(Number) - It will return the hyperbolic cotangent of an angle.

OUTPUT:

So, to learn more about trigonometric function in python for data science, you can check this and this as well.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.