 
  Data Structure Data Structure
 Networking Networking
 RDBMS RDBMS
 Operating System Operating System
 Java Java
 MS Excel MS Excel
 iOS iOS
 HTML HTML
 CSS CSS
 Android Android
 Python Python
 C Programming C Programming
 C++ C++
 C# C#
 MongoDB MongoDB
 MySQL MySQL
 Javascript Javascript
 PHP 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
Get the arc tangent of a given value in Java
To get the arc tangent of a given value in Java, we use the java.lang.Math.atan() method. The atan() method accepts a double value whose angle needs to be computed. The range of the angle returned lies in the range -pi/2 to pi/2. If the argument is NaN, then the result is NaN.
When the argument is zero, then the output is a zero with the same sign as the argument.
Declaration −The java.lang.Math.atan() method is declared as follows −
public static double atan(double a)
where a is the value whose arc tangent is computed.
Let us see a program to get the arc tangent of a given value in Java.
Example
import java.lang.Math; public class Example {    public static void main(String[] args) {       // get two double numbers in degrees       double x = Math.sqrt(3);       double y = 1;       // computing and displaying the arc tangent of these doubles       System.out.println(“Arc tangent of " + x + " = " + Math.atan(x));       System.out.println("Arc tangent of " + y + " = " + Math.atan(y));    } }  Output
Arc tangent of 1.7320508075688772 = 1.0471975511965976 Arc tangent of 1.0 = 0.7853981633974483
Advertisements
 