Big decimal calculation : BigDecimal « Number « Ruby






Big decimal calculation


require 'bigdecimal'

(BigDecimal("2") / BigDecimal("3")).to_s

# => "0.6666666666666667E0"

2.0/3
# => 0.666666666666667

 








Related examples in the same category

1.Calculation on BigDecimal in a function
2.precs of BigDecimal
3.Convert big decimal to string
4.to_f cuts numbers
5.split a big number
6..to_s("F")
7.Convert BigDecimal to string
8.Add value to BigDecimal
9.Round a BigDecimal
10.Get the square root for a BigDecimal
11.PI in BigDecimal