Math.Tanh() es el método incorporado de la clase Math que devuelve el bronceado hiperbólico de un argumento de valor doble dado. El resultado será NaN si el argumento dado es NaN.
Sintaxis:
public static double Tanh(double num)
Parámetro:
num: Es el número cuyo tan hiperbólico se quiere devolver y el tipo de este parámetro es System.Double .
Valor devuelto: el método devuelve el tan hiperbólico de num. de tipo System.Double . Si num es igual a NegativeInfinity, este método devuelve -1. Si num es igual a PositiveInfinity, este método devuelve 1. Si num es igual a NaN, este método devuelve NaN.
Ejemplos:
Input : num = 60.0 Output : 1.0
Los siguientes programas ilustran el método Math.Tanh():
Programa 1:
Csharp
// C# program to illustrate the // Math.Tanh() using System; class GFG { // Main Method public static void Main(String[] args) { double num1 = 60.0, num2 = 0.0, num3 = 1.0; // It returns the hyperbolic tan of // specified angle in radian double tanhvalue = Math.Tanh(num1); Console.WriteLine("The tanh of num1 = " + tanhvalue); tanhvalue = Math.Tanh(num2); Console.WriteLine("The tanh of num2 = " + tanhvalue); tanhvalue = Math.Tanh(num3); Console.WriteLine("The tanh of num3 = " + tanhvalue); } }
The tanh of num1 = 1 The tanh of num2 = 0 The tanh of num3 = 0.761594155955765
Programa 2:
Csharp
// C# program to illustrate the // Math.Tanh() Method using System; class GFG { // Main Method public static void Main(String[] args) { double num1 = (30 * (Math.PI)) / 180, num2 = 11.0, num3 = 45.0; // It returns the hyperbolic tan of // angle in radian double tanhvalue = Math.Tanh(num1); Console.WriteLine("The tanh of num1 = " + tanhvalue); tanhvalue = Math.Tanh(num2); Console.WriteLine("The tanh of num2 = " + tanhvalue); tanhvalue = Math.Tanh(num3); Console.WriteLine("The tanh of num3 = " + tanhvalue); } }
The tanh of num1 = 0.480472778156452 The tanh of num2 = 0.999999999442106 The tanh of num3 = 1
Publicación traducida automáticamente
Artículo escrito por Akanksha_Rai y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA