C 库函数 - tanh()

C 语言教程 · 2019-02-23 07:58:15

描述

C 库函数 double tanh(double x) 返回 x 的双曲正切。

声明

下面是 tanh() 函数的声明。

double tanh(double x)

参数

  • x -- 浮点值。

返回值

该函数返回 x 的双曲正切。

实例

下面的实例演示了 tanh() 函数的用法。

#include <stdio.h>
#include <math.h>

int main ()
{
   double x, ret;
   x = 0.5;

   ret = tanh(x);
   printf("%lf 的双曲正切是 %lf 度", x, ret);
   
   return(0);
}

让我们编译并运行上面的程序,这将产生以下结果:

0.500000 的双曲正切是 0.462117 度

点击查看所有 C 语言教程 文章: https://www.codercto.com/courses/l/17.html

查看所有标签

Pragmatic Thinking and Learning

Pragmatic Thinking and Learning

Andy Hunt / The Pragmatic Bookshelf / 2008 / USD 34.95

In this title: together we'll journey together through bits of cognitive and neuroscience, learning and behavioral theory; you'll discover some surprising aspects of how our brains work; and, see how ......一起来看看 《Pragmatic Thinking and Learning》 这本书的介绍吧!

CSS 压缩/解压工具
CSS 压缩/解压工具

在线压缩/解压 CSS 代码

SHA 加密
SHA 加密

SHA 加密工具