当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ Math atan()用法及代码示例


该函数计算以弧度给出的数字的反正切。

atan(x) = tan-1x

用法

假设一个数字是 'x'。语法是:

float atan(float x);
double atan(double x);
long double atan(long double x);
double atan(integral x);

注意:如果传递的值是整数类型,则将其强制转换为 double。

参数

x:要计算其反正切的值。

返回值

它返回范围[-∼ /2,∼ /2] 内的值。

例子1

当 x 的值为零时,让我们看一个简单的例子。

#include <iostream>
#include<math.h>
using namespace std;
int main()
{
    float degree=0;
    float x=degree*3.14/180;
    std::cout << "Value of tangent is:" <<tan(x)<< std::endl;
    cout<<"Inverse of tangent is:"<<atan(x);
    return 0;
}

输出:

Value of tangent is:0
Inverse of tangent is:0   

在本例中,atan() 函数计算当 x 的值等于 0 时数字的反正切。

例子2

让我们看一个简单的例子,当 x 的值为负时。

#include <iostream>
#include<math.h>
using namespace std;
int main()
{
    float degree= -67;
    float x=degree*3.14/180;
    std::cout << "Value of tangent is:" <<tan(x)<< std::endl;
    cout<<"Inverse of tangent is:"<<atan(x);
    return 0;
}

输出:

Value of tangent is:-2.35197
Inverse of tangent is:-0.863063   

在此示例中,atan() 函数计算 x 值为负时数字的反正切。

例子3

当 x 的值为正时,让我们看一个简单的例子。

#include <iostream>
#include<math.h>
using namespace std;
int main()
{
    float degree=30;
    float x=degree*3.14/180;
    std::cout << "Value of tangent is:" <<tan(x)<< std::endl;
    cout<<"Inverse of tangent is:"<<atan(x);
    return 0;
}

输出:

Value of tangent is:0.576996
Inverse of tangent is:0.48214   

在本例中,当 x 的值为正时,atan() 函数计算一个数的反正切。






相关用法


注:本文由纯净天空筛选整理自 C++ Math atan()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。