1 Star 0 Fork 0

younland / godas

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
diff.go 1.19 KB
一键复制 编辑 原始数据 按行查看 历史
王布衣 提交于 2023-02-14 01:00 . !58 #I6EVCO 实现NDArray
package stat
// Diff 元素的第一个离散差
//
// First discrete difference of element.
// Calculates the difference of a {klass} element compared with another
// element in the {klass} (default is element in previous row).
func Diff[T Number](s []T, param any) []T {
blocks := Rolling[T](s, param)
var d []T
var front = typeDefault[T]()
for _, block := range blocks {
vs := block
vl := len(block)
if vl == 0 {
d = append(d, typeDefault[T]())
continue
}
vf := vs[0]
vc := vs[vl-1]
if DTypeIsNaN(Any2DType(vc)) || DTypeIsNaN(Any2DType(front)) {
front = vf
d = append(d, typeDefault[T]())
continue
}
diff := vc - front
d = append(d, diff)
front = vf
}
return d
}
func Diff2[T BaseType](s []T, param any) []T {
var d any
switch vs := any(s).(type) {
case []float32:
d = Diff(vs, param)
case []float64:
d = Diff(vs, param)
case []int:
d = Diff(vs, param)
case []int8:
d = Diff(vs, param)
case []int16:
d = Diff(vs, param)
case []int32:
d = Diff(vs, param)
case []int64:
d = Diff(vs, param)
//case []uint, []uint8, []uint16, []uint32, []uint64, []uintptr:
// d = xv
default:
// 其它类型原样返回
panic(Throw(any(s)))
}
return d.([]T)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/younland/godas.git
git@gitee.com:younland/godas.git
younland
godas
godas
v1.0.0

搜索帮助

344bd9b3 5694891 D2dac590 5694891