📜  C#中的MathF.Atanh()方法与示例

📅  最后修改于: 2021-05-30 00:09:51             🧑  作者: Mango

MathF.Atanh(Single)方法用于返回浮点值的双曲线反正切。

下面是说明上述方法的用法的程序:

范例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);
    }
}
输出:
Angle is NaN

范例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);
    }
}
输出:
Angle is 0.2554128
Angle is NaN
Angle is NaN
Angle is NaN