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);
注意:如果传递的值是整数类型,则会被转换为双精度浮点数。
参数
x :要计算反正切的值。
返回值
它返回的范围是[-∏/2, ∏/2]。
示例1
让我们看一个简单的示例,当x的值为零时。
#include
#include
using namespace std;
int main()
{
float degree=0;
float x=degree*3.14/180;
std::cout << "Value of tangent is :" <
输出:
Value of tangent is :0
Inverse of tangent is :0
在这个示例中,atan()函数在x的值等于零时计算一个数的反正切。
示例2
让我们看一个简单的示例,当x的值为负数时。
#include
#include
using namespace std;
int main()
{
float degree= -67;
float x=degree*3.14/180;
std::cout << "Value of tangent is : " <
输出:
Value of tangent is : -2.35197
Inverse of tangent is : -0.863063
在这个示例中,当x的值为负数时,atan()函数计算一个数的反正切值。
示例3
让我们看一个简单的示例,当x的值为正数时。
#include
#include
using namespace std;
int main()
{
float degree=30;
float x=degree*3.14/180;
std::cout << "Value of tangent is : " <
输出:
Value of tangent is : 0.576996
Inverse of tangent is : 0.48214
在这个示例中,atan()函数在x的值为正数时计算一个数的反正切。