Php/func math tanh
来自菜鸟教程
PHP tanh()函数
例
返回不同数字的双曲正切值:
<?php echo(tanh(M_PI_4) . "<br>"); echo(tanh(0.50) . "<br>"); echo(tanh(-0.50) . "<br>"); echo(tanh(5) . "<br>"); echo(tanh(10) . "<br>"); echo(tanh(-5) . "<br>"); echo(tanh(-10)); ?>
定义和用法
tanh()函数返回数字的双曲正切值,该值等于sinh(x)/ cosh(x)。
句法
tanh(number);
参数值
参数 | 描述 |
---|---|
number | 需要。指定一个数字 |
技术细节
返回值: | 的双曲正切
number |
返回类型: | 浮动 |
PHP版本: | 4.1+ |