在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称:JuliaMath/FixedPointDecimals.jl开源软件地址:https://github.com/JuliaMath/FixedPointDecimals.jl开源编程语言:Julia 100.0%开源软件介绍:FixedPointDecimalsProvides the fixed-point decimal type This library defines the type For example,
because the range of In general
Usagejulia> using FixedPointDecimals
julia> 2.2 / 10
0.22000000000000003
julia> FixedDecimal{Int,2}(2.2) / 10
FixedDecimal{Int64,2}(0.22)
julia> 0.1 + 0.2
0.30000000000000004
julia> FixedDecimal{Int,1}(0.1) + FixedDecimal{Int,1}(0.2)
FixedDecimal{Int64,1}(0.3) |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论