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