当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。