C++
数字 | Numerics

std::tanh

STD:TAH

Defined in header
float tanh( float arg (1)
double tanh( double arg (2)
long double tanh( long double arg (3)
double tanh( Integral arg (4)(since C++11)

的双曲切线的计算arg...

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

参数

arg-value of a floating-point or Integral type

返回值

如果没有错误发生,则双曲切线arg%28 tanh%28 arg%29,或

耳-e-Arg

*。

耳+e-Arg

%29被返回。

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

错误处理

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

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

  • 如果参数为±0,则返回±0

  • 如果参数为±∞,则返回±1

  • 如果参数为nan,则返回nan。

注记

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

实例

二次

#include <iostream> #include <cmath> int main() { std::cout << "tanh(1) = " << std::tanh(1) << '\n' << "tanh(-1) = " << std::tanh(-1) << '\n' << "tanh(0.1)*sinh(0.2)-cosh(0.2) = " << std::tanh(0.1) * std::sinh(0.2) - std::cosh(0.2) << '\n'; // special values std::cout << "tanh(+0) = " << std::tanh(+0.0) << '\n' << "tanh(-0) = " << std::tanh(-0.0) << '\n'; }

二次

产出:

二次

tanh(1) = 0.761594 tanh(-1) = -0.761594 tanh(0.1)*sinh(0.2)-cosh(0.2) = -1 tanh(+0) = 0 tanh(-0) = -0

二次

另见

sinhcomputes hyperbolic sine (sh(x)) (function)
coshcomputes hyperbolic cosine (ch(x)) (function)
atanh (C++11)computes the inverse hyperbolic tangent (artanh(x)) (function)
tanh(std::complex)computes hyperbolic tangent of a complex number (function template)
tanh(std::valarray)applies the function std::tanh to each element of valarray (function template)

c TANK文件

© cppreference.com

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

http://en.cppreference.com/w/cpp/数值/数学/tanh