sinh() 函數返回等效於的數字的雙曲正弦值。
(exp(num) - exp(-num))/2)
用法
sinh(num)
參數
num− 要為其返回雙曲正弦值的數字。以弧度為單位的值。
返回
sinh() 函數返回數字的雙曲正弦值。
示例
<?php
echo(sinh(0) . "<br>");
echo(sinh(1) );
?>
輸出
0<br>1.1752011936438
示例
讓我們看另一個例子 -
<?php
echo(sinh(M_PI) . "<br>");
echo(sinh(M_PI_2));
?>
輸出
11.548739357258<br>2.3012989023073
相關用法
- PHP sinh( )用法及代碼示例
- PHP sin( )用法及代碼示例
- PHP sin()用法及代碼示例
- PHP simplexml_load_file()用法及代碼示例
- PHP simplexml_load_string()用法及代碼示例
- PHP simplexml_import_dom()用法及代碼示例
- PHP sizeof()用法及代碼示例
- PHP similar_text()用法及代碼示例
- PHP string rtrim()用法及代碼示例
- PHP strsrt()用法及代碼示例
- PHP sqrt()用法及代碼示例
- PHP stats_dens_pmf_binomial()用法及代碼示例
- PHP string printf()用法及代碼示例
- PHP string ord()用法及代碼示例
- PHP string join()用法及代碼示例
- PHP Spreadsheet_Excel_Writer setAlign()用法及代碼示例
- PHP strtolower()用法及代碼示例
- PHP Spreadsheet_Excel_Writer setScript()用法及代碼示例
- PHP str_split()用法及代碼示例
- PHP stream_get_filters()用法及代碼示例
注:本文由純淨天空篩選整理自Samual Sam大神的英文原創作品 sinh() function in PHP。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。