El método atan() es la clase CMath que se utiliza para devolver el arco tangente del valor dado.
Sintaxis: Math.atan(z)
Parámetro: Aquí, z es el valor cuyo arco tangente se desea calcular.
Devoluciones: este método devuelve el valor del arco tangente de z .
Ejemplo 1:
# Ruby code for atan() method require 'cmath' # Initializing value a = 0.3584 b = 2 # Printing result puts "atan value of a : #{CMath.atan(a)}\n\n" puts "atan value of b : #{CMath.atan(b)}\n\n"
Producción:
atan value of a : 0.34413842830780517 atan value of b : 1.1071487177940904
Ejemplo 2:
# Ruby code for atan() method require 'cmath' # Initializing value a = 0 b = -0.247 # Printing result puts "atan value of a : #{CMath.atan(a)}\n\n" puts "atan value of b : #{CMath.atan(b)}\n\n"
Producción:
atan value of a : 0.0 atan value of b : -0.24215314674687552
Publicación traducida automáticamente
Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA