首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

std::atan

Defined in header <cmath>

?

?

float atan( float arg );

(1)

?

double atan( double arg );

(2)

?

long double atan( long double arg );

(3)

?

double atan( Integral arg );

(4)

(since C++11)

的弧切线的主值。arg...

4%29一组过载或接受任意参数的函数模板积分型等于2%29%28double29%。

参数

arg

-

value of a floating-point or Integral type

返回值

如果没有错误发生,则将arg范围内28 arg%29%29。[---

π

*。

;+

π

*。

弧度,返回。

如果由于下流而发生范围错误,则返回舍入%29后的正确结果%28。

错误处理

错误按数学[医]错误处理...

如果实现支持ieee浮点算法%28IEC 60559%29,

  • 如果参数为±0,则返回
  • 如果参数为+∞,则返回+π/2
  • 如果参数为-∞,则返回-π/2
  • 如果参数为nan,则返回nan。

注记

POSIX指定如果是地下水流,arg返回,如果不支持,则实现定义值不大于dbl。[医]敏·弗利特[医]和LDBL[医]民回来了。

实例

二次

代码语言:javascript
复制
#include <iostream>
#include <cmath>
 
int main()
{
    std::cout << "atan(1) = " << atan(1) << " 4*atan(1) = " << 4*atan(1) << '\n';
    // special values
    std::cout << "atan(Inf) = " << atan(INFINITY)
              << " 2*atan(Inf) = " << 2*atan(INFINITY) << '\n'
              << "atan(-0.0) = " << atan(-0.0) << '\n'
              << "atan(+0.0) = " << atan(0) << '\n';
}

二次

产出:

二次

代码语言:javascript
复制
atan(1) = 0.785398 4*atan(1) = 3.14159
atan(Inf) = 1.5708 2*atan(Inf) = 3.14159
atan(-0.0) = -0
atan(+0.0) = 0

二次

另见

asin

computes arc sine (arcsin(x)) (function)

acos

computes arc cosine (arccos(x)) (function)

atan2

arc tangent, using signs to determine quadrants (function)

tan

computes tangent (tan(x)) (function)

atan(std::complex) (C++11)

computes arc tangent of a complex number (arctan(z)) (function template)

atan(std::valarray)

applies the function std::atan to each element of valarray (function template)

c关于atan的文件

代码语言:txt
复制
 ? cppreference.com

在CreativeCommonsAttribution下授权-ShareAlike未移植许可v3.0。

扫码关注腾讯云开发者

领取腾讯云代金券

http://www.vxiaotou.com