MathF.Atanh(Single)方法用于返回浮点值的双曲arc-tangent。
用法: public static float Atanh (float x);
Here, it takes a standard floating point number.
返回值:此方法返回给定值的双曲arc-tangent。如果数字小于1,则返回NaN。
下面的程序来说明上述方法的使用:
示例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
相关用法
- C# MathF.Exp()用法及代码示例
- C# MathF.Cos()用法及代码示例
- C# MathF.Tan()用法及代码示例
- C# MathF.Abs()用法及代码示例
- C# MathF.Min()用法及代码示例
- C# MathF.Sin()用法及代码示例
- C# MathF.Pow()用法及代码示例
- C# MathF.Log()用法及代码示例
- C# MathF.Max()用法及代码示例
- C# MathF.Cbrt()用法及代码示例
- C# Char.GetTypeCode()用法及代码示例
- C# Char.GetHashCode()用法及代码示例
- C# MathF.Atan()用法及代码示例
- C# BitArray.RightShift()用法及代码示例
- C# BitArray.LeftShift()用法及代码示例
注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 MathF.Atanh() Method in C# with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。