
- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Trigonometric Functions in Python
Python includes following functions that perform trigonometric calculations.
Sr.No | Function & Description |
---|---|
1 | acos(x) Return the arc cosine of x, in radians. |
2 | asin(x) Return the arc sine of x, in radians. |
3 | atan(x) Return the arc tangent of x, in radians. |
4 | atan2(y, x) Return atan(y / x), in radians. |
5 | cos(x) Return the cosine of x radians.. |
6 | hypot(x, y) Return the Euclidean norm, sqrt(x*x + y*y). |
7 | sin(x) Return the sine of x radians. |
8 | tan(x) Return the tangent of x radians. |
9 | degrees(x) Converts angle x from radians to degrees. |
10 | radians(x) Converts angle x from degrees to radians. |
- Related Questions & Answers
- Trigonometric Functions in C#
- Trigonometric Functions in Java
- Get the Trigonometric inverse sin in Python
- Get the Trigonometric inverse cosine in Python
- Get the Trigonometric inverse tangent in Python
- Trigonometric methods in Java
- Trigonometric expressions in Arduino
- Get the Trigonometric sin of an angle in Python
- Get the Trigonometric cosine of an angle in Python
- Get the Trigonometric tangent of an angle in Python
- Mathematical Functions in Python - Special Functions and Constants
- Statistical Functions in Python
- Decimal Functions in Python
- Operator Functions in Python
- Partial Functions in Python?
Advertisements