El método tan() es una clase matemática que se utiliza para devolver la tangente del valor dado.
Sintaxis: Math.tan(z)
Parámetro: Aquí, z es el valor cuya tangente se desea calcular.
Devoluciones: este método devuelve el valor de la tangente de z .
Ejemplo 1:
# Ruby code for tan() method require 'cmath' # Initializing value a = 0.3584 b = 2 # Printing result puts "tan value of a : #{CMath.tan(a)}\n\n" puts "tan value of b : #{CMath.tan(b)}\n\n"
Producción:
tan value of a : 0.374577262964287 tan value of b : -2.185039863261519
Ejemplo 2:
# Ruby code for tan() method require 'cmath' # Initializing value a = 0 b = -0.247 # Printing result puts "tan value of a : #{CMath.tan(a)}\n\n" puts "tan value of b : #{CMath.tan(b)}\n\n"
Producción:
tan value of a : 0.0 tan value of b : -0.2521487591957248
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