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


C语言 tanh用法及代码示例


C语言math头文件(math.h)中tanh函数的用法及代码示例。

用法:

     double tanh  (double x);
      float tanhf (float x);
long double tanhl (long double x);
     double tanh (double x);
      float tanh (float x);
long double tanh (long double x);
     double tanh (T x);           // additional overloads for integral types
计算双曲正切
返回的双曲正切值x

标头<tgmath.h>提供此函数的type-generic宏版本。
这个函数重载于<complex><valarray>(参考复杂的tanhvalarray tanh)。
额外的过载在此头文件中提供(<cmath>) 为了整数类型:这些重载有效地转换x到一个double计算之前(为T有任何整数类型)。

这个函数也重载于<complex><valarray>(参考复杂的tanhvalarray tanh)。

参数

x
表示双曲角的值。

返回值

的双曲正切x

示例

/* tanh example */
#include <stdio.h>      /* printf */
#include <math.h>       /* tanh, log */

int main ()
{
  double param, result;
  param = log(2.0);
  result = tanh (param);
  printf ("The hyperbolic tangent of %f is %f.\n", param, result);
  return 0;
}


输出:

The hyperbolic tangent of 0.693147 is 0.600000.

相关用法


注:本文由纯净天空筛选整理自C标准库大神的英文原创作品 C tanh function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。