代码拉取完成,页面将自动刷新
package functions
import (
"gitee.com/quant1x/num/internal/constraints"
"gitee.com/quant1x/num/internal/partial"
"math"
"slices"
)
func Sum_Go[T constraints.Float](x []T) T {
sum := T(0)
for i := 0; i < len(x); i++ {
sum += x[i]
}
return sum
}
func CumSum_Go[T constraints.Float](x []T) {
sum := T(0)
for i := 0; i < len(x); i++ {
sum += x[i]
x[i] = sum
}
}
func Prod_Go[T constraints.Float](x []T) T {
prod := T(1)
for i := 0; i < len(x); i++ {
prod *= x[i]
}
return prod
}
func CumProd_Go[T constraints.Float](x []T) {
prod := T(1)
for i := 0; i < len(x); i++ {
prod *= x[i]
x[i] = prod
}
}
func Mean_Go[T constraints.Float](x []T) T {
return Sum_Go(x) / T(len(x))
}
func Median_Go[T constraints.Float](x []T) T {
if len(x)%2 == 1 {
x = slices.Clone(x)
i := len(x) / 2
partial.TopK(x, i+1)
return x[i]
}
return Quantile_Go(x, T(0.5))
}
func Quantile_Go[T constraints.Float](x []T, q T) T {
if len(x) == 1 {
return x[0]
}
if q == T(0) {
return Min_Go(x)
}
if q == T(1) {
return Max_Go(x)
}
x = slices.Clone(x)
f := T(len(x)-1) * q
i := int(math.Floor(float64(f)))
if q < 0.5 {
partial.TopK(x, i+2)
a := Max_Go(x[:i+1])
b := x[i+1]
return a + (b-a)*(f-T(i))
} else {
partial.TopK(x, i+1)
a := x[i]
b := Min_Go(x[i+1:])
return a + (b-a)*(f-T(i))
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。