Java - método atan ()

Descripción

El método devuelve el arcotangente del valor doble especificado.

Sintaxis

double atan(double d)

Parámetros

Aquí está el detalle de los parámetros:

  • d - Un tipo de datos doble.

Valor devuelto

  • Este método devuelve el arcotangente del valor doble especificado.

Ejemplo

public class Test { 

   public static void main(String args[]) {
      double degrees = 45.0;
      double radians = Math.toRadians(degrees);

      System.out.format("The value of pi is very very very approximately %.4f%n", Math.PI);
      System.out.format("The arctangent of %.4f is %.4f degrees %n", Math.cos(radians), 
         Math.toDegrees(Math.atan(Math.sin(radians))));
   }
}

Esto producirá el siguiente resultado:

Salida

The value of pi is very very very approximately 3.1416
The arctangent of 0.7071 is 35.2644 degrees