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


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


atanh()是Ruby中的內置函數,返回給定值的多維數據集根。

用法:Math.cbrt(value) 

參數:該函數接受一個必須返回的參數值,其立方根將被返回。


返回值:它返回值的立方根。

例子1

#Ruby program for cbrt() function 
  
#Assigning values 
val1 = 8 val2 = 27 val3 = 64 val4 = 1000 
  
#Prints the cbrt() value 
                                    puts Math.cbrt(val1) 
                                        puts Math.cbrt(val2) 
                                            puts Math.cbrt(val3) 
                                                puts Math.cbrt(val4)

輸出

2.0
3.0000000000000004
4.0
10.0

例子2

#Ruby program for cbrt() function 
  
#Assigning values 
val1 = 10 val2 = -29 val3 = 899 val4 = -87879 
  
#Prints the cbrt() value 
                                        puts Math.cbrt(val1) 
                                            puts Math.cbrt(val2) 
                                                puts Math.cbrt(val3) 
                                                    puts Math.cbrt(val4)

輸出

2.1544346900318834
-3.0723168256858475
9.651316634226061
-44.45920597627334

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



相關用法


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