2 Star 2 Fork 9

王布衣/gox

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
decimals.go 694 Bytes
一键复制 编辑 原始数据 按行查看 历史
package num
import "math"
// Decimal 保留小数点四舍五入
func Decimal(value float64, digits ...int) float64 {
defaultDigits := 2
if len(digits) > 0 {
defaultDigits = digits[0]
}
n10 := math.Pow10(defaultDigits)
return math.Trunc((value+0.5/n10)*n10) / n10
}
// NetChangeRate 净增长率, 去掉百分比
func NetChangeRate[B Number, C Number](baseValue B, currentValue C) (changeRate float64) {
changeRate = ChangeRate(baseValue, currentValue)
changeRate = (changeRate - 1.00) * 100.00
return changeRate
}
// ChangeRate 增长率
func ChangeRate[B Number, C Number](baseValue B, currentValue C) (changeRate float64) {
return float64(currentValue) / float64(baseValue)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/quant1x/gox.git
git@gitee.com:quant1x/gox.git
quant1x
gox
gox
v1.8.1

搜索帮助