PHP tanh() 函数是预定义的三角数学函数。它用于返回数字的双曲正切值。它等于 sinh(x)/cos(x)。
用法:
float cosh ( float $arg );
参数 | 描述 | 必需/可选 |
---|---|---|
arg | 指定参数 | Required |
例子1
<?php
$n=4;
echo "Your number is:".$n;
echo "<br>"."By using 'tanh()' function your value is:".tanh($n)."<br>";
?>
输出:
Your number is:4 By using 'tanh()' function your value is:0.99932929973907
例子2
<?php
$n=(-4);
echo "Your number is:".$n;
echo "<br>"."By using 'tanh()' function your value is:".tanh($n)."<br>";
?>
输出:
Your number is:-4 By using 'tanh()' function your value is:-0.99932929973907
例子3
<?php
$n=(0.50);
echo "Your number is:".$n;
echo "<br>"."By using 'tanh()' function your value is:".tanh($n)."<br>";
?>
输出:
Your number is:0.5 By using 'tanh()' function your value is:0.46211715726001
示例 4
<?php
$n=(-0.50);
echo "Your number is:".$n;
echo "<br>"."By using 'tanh()' function your value is:".tanh($n)."<br>";
?>
输出:
Your number is:-0.5 By using 'tanh()' function your value is:-0.46211715726001
例 5
<?php
$n=(M_PI_4);
echo "Your number is:M_PI_4";
echo "<br>"."By using 'tanh()' function your value is:".tanh($n)."<br>";
?>
输出:
Your number is:M_PI_4 By using 'tanh()' function your value is:0.65579420263267
相关用法
- PHP tanh( )用法及代码示例
- PHP tan()用法及代码示例
- PHP tan( )用法及代码示例
- PHP time()用法及代码示例
- PHP timezone_version_get()用法及代码示例
- PHP timezone_name_get()用法及代码示例
- PHP time_sleep_until( )用法及代码示例
- PHP timezone_location_get()用法及代码示例
- PHP touch( )用法及代码示例
- PHP timezone_identifiers_list()用法及代码示例
- PHP timezone_transitions_get()用法及代码示例
- PHP tmpfile( )用法及代码示例
- PHP trait_exists()用法及代码示例
- PHP timezone_open()用法及代码示例
- PHP timezone_name_from_abbr()用法及代码示例
- PHP trim()用法及代码示例
- PHP time_nanosleep( )用法及代码示例
- PHP timezone_offset_get()用法及代码示例
- PHP timezone_abbreviations_list()用法及代码示例
- PHP SimpleXMLElement children()用法及代码示例
注:本文由纯净天空筛选整理自 PHP tanh() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。