PHP cosh() 是數學三角函數,用於返回數字的雙曲餘弦。換句話說,我們可以說它轉換了雙曲餘弦。
用法:
float cosh ( float $arg );
參數 | 描述 | 必需/可選 |
---|---|---|
arg | 指定參數 | Required |
例子1
<?php
$n=3;
echo "Your number is:".$n;
echo "<br>"."By using 'cosh()' function your value is:".cosh($n)."<br>";
?>
輸出:
Your number is:3 By using 'cosh()' function your value is:10.067661995778
例子2
<?php
$n=(-3);
echo "Your number is:".$n;
echo "<br>"."By using 'cosh()' function your value is:".cosh($n)."<br>";
?>
輸出:
Your number is:-3 By using 'cosh()' function your value is:10.067661995778
例子3
<?php
$n=0;
echo "Your number is:".$n;
echo "<br>"."By using 'cosh()' function your value is:".cosh($n)."<br>";
?>
輸出:
Your number is:0 By using 'cosh()' function your value is:1
示例 4
<?php
$n=M_PI;
echo "Your number is:M_PI";
echo "<br>"."By using 'cosh()' function your value is:".cosh($n)."<br>";
?>
輸出:
Your number is:M_PI By using 'cosh()' function your value is:11.591953275522
例 5
<?php
$n=2*M_PI;
echo "Your number is:2*M_PI";
echo "<br>"."By using 'cosh()' function your value is:".cosh($n)."<br>";
?>
輸出:
Your number is:2*M_PI By using 'cosh()' function your value is:267.74676148375
相關用法
- PHP cosh( )用法及代碼示例
- PHP cos( )用法及代碼示例
- PHP cos()用法及代碼示例
- PHP compact()用法及代碼示例
- PHP count_chars()用法及代碼示例
- PHP convert_uudecode()用法及代碼示例
- PHP copy( )用法及代碼示例
- PHP connection_status()用法及代碼示例
- PHP collator_sort()用法及代碼示例
- PHP count()用法及代碼示例
- PHP convert_cyr_string()用法及代碼示例
- PHP constant()用法及代碼示例
- PHP collator_compare()用法及代碼示例
- PHP collator_sort_with_sort_keys()用法及代碼示例
- PHP collator_asort()用法及代碼示例
- PHP convert_uuencode()用法及代碼示例
- PHP crypt(), password_hash()用法及代碼示例
- PHP closedir( )用法及代碼示例
- PHP chop()用法及代碼示例
- PHP ctype_punct()用法及代碼示例
注:本文由純淨天空篩選整理自 PHP cosh() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。