📜  C#| Math.Atan()方法

📅  最后修改于: 2021-05-29 15:38:34             🧑  作者: Mango

Math.Atan()是一个内置的Math类方法,该方法返回以正切值作为双值参数给出的角度。如果参数为NaN ,则结果将为NaN

句法:

public static double Atan(double num)

范围:

返回类型:返回以弧度为单位的角度Θ,其类型为System.Double 。在此,角度始终以弧度为单位,即-π/ 2≤Θ≤π/ 2。

例子:

Input  : Math.Atan(1)
Output : 0.785398163397448
     
Input  : Math.Atan(0.0)
Output : 0

Input  : Math.Atan(-0.0)
Output : 0

Input  : Math.Atan(Double.PositiveInfinity)
Output : 1.5707963267949

Input  : Math.Atan(Double.NegativeInfinity)
Output : -1.5707963267949

程序:演示Math.Atan()方法

// C# program to demonstrate working
// of Math.Atan() method
using System;
  
class Geeks {
  
    // Main Method
    public static void Main(String []args)
    {
        double a = Math.PI;
          
        // using Math.Atan() method 
        Console.WriteLine(Math.Atan(a));
  
        double d = 0.0;
        double e = -0.0;
        double posi = Double.PositiveInfinity;
        double nega = Double.NegativeInfinity;
        double nan = Double.NaN;
  
        Console.WriteLine(Math.Atan(1));
  
        // Input positive zero
        // Output positive zero
        Console.WriteLine(Math.Atan(d));
  
        // Input negative zero
        // Output positive zero
        Console.WriteLine(Math.Atan(e));
          
        // input PositiveInfinity
        // Output 1.5707963267949
        Console.WriteLine(Math.Atan(posi));
          
        // input NegativeInfinity
        // Output -1.5707963267949
        Console.WriteLine(Math.Atan(nega));
          
        // input NaN
        // Output NaN
        Console.WriteLine(Math.Atan(nan));
    }
}
输出:
1.26262725567891
0.785398163397448
0
0
1.5707963267949
-1.5707963267949
NaN

参考: https://msdn.microsoft.com/en-us/library/system.math.atan