hypot()函數是PHP中的內置數學函數,它返回傳遞的參數平方和的平方根。它找到斜邊,斜邊是直角三角形的最長邊。它由以下公式計算:
其中x和y是三角形的另外兩個邊。
用法:
hypot(x,y);
使用參數:
- x :第一邊的長度。
- y:第二麵的長度。
返回類型:hypot(x,y)的返回類型為Float,它返回作為參數傳遞給它的值的平方的平方根。
例子:
Input : x=3, y=4 Output :5 Input :x=9, y=10 Output : 13.453624047074
以下示例程序旨在說明hypot()函數在PHP中的工作:
<?php
// PHP code
// Calulating the value of hypotenuse
// With sides = 3,4
$hypotenuse = hypot(3,4);
print_r($hypotenuse);
// New Line
print_r("\n");
// Calulating the value of hypotenuse
// With sides = 4,6
$hypotenuse = hypot(4,6);
print_r($hypotenuse);
?>
輸出:
5 7.211102550928
相關文章:C++中的hypot()
相關用法
- p5.js nfc()用法及代碼示例
- PHP cos( )用法及代碼示例
- d3.js d3.lab()用法及代碼示例
- p5.js nf()用法及代碼示例
- PHP tan( )用法及代碼示例
- p5.js nfp()用法及代碼示例
- PHP next()用法及代碼示例
- CSS var()用法及代碼示例
- PHP pow( )用法及代碼示例
- PHP pi( )用法及代碼示例
- d3.js d3.set.add()用法及代碼示例
- PHP Ds\Set xor()用法及代碼示例
注:本文由純淨天空篩選整理自ShivamKD大神的英文原創作品 PHP | hypot() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。