atan() - C函式


C庫函式double atan(double x) 返回x的反正切弧度。 

宣告

以下是atan() 函式的宣告。

double atan(double x)

引數

  • x -- 這是浮點值。

返回值

這個函式返回主弧切線為x,在區間 [-pi/2,+pi/2] 弧度。

範例

下面的例子顯示atan() 函式的用法。 

#include <stdio.h>
#include <math.h>

#define PI 3.14159265

int main ()
{
   double x, ret, val;
   x = 1.0;
   val = 180.0 / PI;

   ret = atan (x) * val;
   printf("The arc tangent of %lf is %lf degrees", x, ret);
   
   return(0);
}

讓我們編譯和執行上面的程式,這將產生以下結果:

The arc tangent of 1.000000 is 45.000000 degrees