您现在的位置是:首页 > PHP函数

李清波 2021-06-17 PHP函数 1450 复制当前网址

tanh



PHP tanh() 函数

定义和用法

tanh() 函数返回双曲正切。


语法

tanh(x)

参数描述
x必需。一个数。


说明

返回 x 的双曲正切值,定义为 sinh(arg)/cosh(arg)。


例子

在本例中,我们将返回不同的数的双曲正切:

<?php
echo(tanh(M_PI_4));
echo(tanh(0.50));
echo(tanh(-0.50));
echo(tanh(5));
echo(tanh(10));
echo(tanh(-5));
echo(tanh(-10))
?>

输出:

0.655794202633
0.46211715726
-0.46211715726
0.999909204263
0.999999995878
-0.999909204263
-0.999999995878


文章来源:https://liqingbo.com/blog-743.html

上一篇:mysql_affected_rows

下一篇:tan

评论