Ruby中的frexp()函数返回一个由两个元素组成的数组,该数组包含归一化的分数,该分数是浮点值,而 index 是给定数字的整数值。相等时,分数**(2 ^ index )返回数字。
用法:Math.frexp(number)
参数:该函数带有一个必填参数编号,将返回其标准化分数和 index 。
返回值:该函数返回一个包含两个元素的数组。
例子1:
# Ruby program for frexp() function
# Assigning values
val1 = 123
val2 = 256
val3 = 23
val4 = 18
# Prints the frexp() value
puts Math.frexp(val1)
puts
puts Math.frexp(val2)
puts
puts Math.frexp(val3)
puts
puts Math.frexp(val4)
输出:
0.9609375 7 0.5 9 0.71875 5 0.5625 5
例子2:
# Ruby program for frexp() function
# Assigning values
val1 = 3213
val2 = 12
val3 = 16
val4 = 23
# Prints the frexp() value
puts Math.frexp(val1)
puts
puts Math.frexp(val2)
puts
puts Math.frexp(val3)
puts
puts Math.frexp(val4)
输出:
0.784423828125 12 0.75 4 0.5 5 0.71875 5
参考: https://devdocs.io/ruby~2.5/math#method-c-frexp
相关用法
- Ruby Math sin()用法及代码示例
- Ruby Math tan()用法及代码示例
- Ruby Math exp()用法及代码示例
- Ruby Math cos()用法及代码示例
- Ruby Math log()用法及代码示例
- Ruby Math erf()用法及代码示例
- Ruby Math log2()用法及代码示例
- Ruby Math sqrt()用法及代码示例
- Ruby Math log10()用法及代码示例
- Ruby Math tanh()用法及代码示例
- Ruby Math erfc()用法及代码示例
- Ruby Math cosh()用法及代码示例
- Ruby Math hypot()用法及代码示例
- Ruby Math ldexp()用法及代码示例
- Ruby Math sinh()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby | Math frexp() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。