java.lang.Math.atan() devuelve el arco tangente de un ángulo entre -pi/2 y pi/2. Si el argumento es NaN, entonces el resultado es NaN.
Nota: si el argumento es cero, entonces el resultado es un cero con el mismo signo que el argumento.
Sintaxis:
public static double atan(double a) Parameter : a : the value whose arc tangent is to be returned. Return : This method returns the arc tangent of the argument.
Ejemplo: para mostrar el funcionamiento del método java.lang.Math.atan() .
// Java program to demonstrate working // of java.lang.Math.atan() method import java.lang.Math; class Gfg { // driver code public static void main(String args[]) { double a = Math.PI; System.out.println(Math.atan(a)); double c = 344.0; double d = 0.0; double e = -0.0; double f = 1.5; System.out.println(Math.atan(c)); // Input positive zero // Output positive zero System.out.println(Math.atan(d)); // Input negative zero // Output negative zero System.out.println(Math.atan(e)); System.out.println(Math.atan(f)); } }
Producción:
1.2626272556789115 1.5678893582391513 0.0 -0.0 0.982793723247329
Publicación traducida automáticamente
Artículo escrito por Niraj_Pandey y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA