當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Ruby Math hypot()用法及代碼示例


當l和b作為參數給出時,Ruby中的hypot()函數返回sqrt(l^2 + b^2)。最終返回邊為l和b的直角三角形的斜邊。

用法:Math.hypot(l, b)  

參數:該函數帶有兩個必填參數l和b,用於指定長度和基數。
返回值:該函數返回邊為l和b的直角三角形的斜邊。


例子1

# Ruby program for hypot() function  
  
# Assigning values 
l1 = 3  
b1 = 4  
  
l2 = 12 
b2 = 14 
  
# Prints the hypot() value  
puts Math.hypot(l1, b1) 
  
puts Math.hypot(l2, b2)

輸出

5.0
18.439088914585774

例子2

# Ruby program for hypot() function  
  
# Assigning values 
l1 = 10 
b1 = 5 
  
l2 = 11 
b2 = 20 
  
# Prints the hypot() value  
puts Math.hypot(l1, b1) 
  
puts Math.hypot(l2, b2)

輸出

11.180339887498949
22.825424421026653

參考: https://devdocs.io/ruby~2.5/math#method-c-hypot



相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby | Math hypot() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。