El método MathF.Atanh(Single) se utiliza para devolver el arco tangente hiperbólico de un valor de punto flotante.
Sintaxis: public static float Atanh (float x);
Aquí, se necesita un número de punto flotante estándar.Valor devuelto: este método devuelve el arco tangente hiperbólico del valor dado. Si el número es menor que 1, devuelve NaN.
A continuación se muestran los programas para ilustrar el uso del método mencionado anteriormente:
Ejemplo 1:
// C# program to demonstrate the // MathF.Atanh(Single) Method using System; class GFG { // Main Method public static void Main() { // Declaring and initializing value float value = 1.7f; // getting hyperbolic arc-tangent value // using Atanh() method float result = MathF.Atanh(value); // Display the value Console.WriteLine("Angle is {0}", result); } }
Producción:
Angle is NaN
Ejemplo 2:
// C# program to demonstrate the // MathF.Atanh(Single) Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { // calling get() method get(0.25f); get(Single.NaN); get(Single.NegativeInfinity); get(Single.PositiveInfinity); } // defining get() method public static void get(float value) { // getting hyperbolic arc-tangent value // using Atanh() method float result = MathF.Atanh(value); // Display the value Console.WriteLine("Angle is {0}", result); } }
Producción:
Angle is 0.2554128 Angle is NaN Angle is NaN Angle is NaN
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