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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。