Math.Tanh(Single) Method es el método de clase MathF incorporado que devuelve la tangente hiperbólica de un argumento de valor único determinado.
Sintaxis: public static float Tanh (float x);
Aquí, x es el número cuya tangente hiperbólica se devolverá y el tipo de este parámetro es System.Single .
Valor devuelto: este método devuelve la tangente hiperbólica de x de tipo System.Single . Si x es igual a NegativeInfinity o PositiveInfinity, se devuelve PositiveInfinity. Si x es igual a NaN, se devuelve NaN.
Los siguientes programas ilustran el uso del método mencionado anteriormente:
Ejemplo 1:
Csharp
// C# program to illustrate the // MathF.Tanh(Single) Method using System; class GFG { // Main Method public static void Main(String[] args) { float num1 = 70.0f, num2 = 0.0f, num3 = 1.0f; // It returns the hyperbolic tangent // of specified angle in radian float tanhvalue = MathF.Tanh(num1); Console.WriteLine("The Tanh of num1 = " + tanhvalue); tanhvalue = MathF.Tanh(num2); Console.WriteLine("The Tanh of num2 = " + tanhvalue); tanhvalue = MathF.Tanh(num3); Console.WriteLine("The Tanh of num3 = " + tanhvalue); } }
The Tanh of num1 = 1 The Tanh of num2 = 0 The Tanh of num3 = 0.7615942
Ejemplo 2:
Csharp
// C# program to illustrate the // MathF.Tanh(Single) Method using System; class GFG { // Main Method public static void Main() { float num1 = (90 * (MathF.PI)) / 180; // calling result() method result(num1); result(Single.NaN); result(Single.NegativeInfinity); result(Single.PositiveInfinity); } // defining result() method public static void result(float value) { // using the method float result = MathF.Tanh(value); // Display the value Console.WriteLine("Tanh({0}) will be {1}", value, result); } }
Tanh(1.570796) will be 0.9171523 Tanh(NaN) will be NaN Tanh(-Infinity) will be -1 Tanh(Infinity) will be 1
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