cc-backend/pkg/resampler/util.go

36 lines
662 B
Go
Raw Normal View History

package resampler
import (
"math"
"github.com/ClusterCockpit/cc-backend/pkg/schema"
)
func calculateTriangleArea(paX, paY, pbX, pbY, pcX, pcY schema.Float) float64 {
area := ((paX-pcX)*(pbY-paY) - (paX-pbX)*(pcY-paY)) * 0.5
return math.Abs(float64(area))
}
func calculateAverageDataPoint(points []schema.Float, xStart int64) (avgX schema.Float, avgY schema.Float) {
2024-08-25 16:13:43 +02:00
flag := 0
for _, point := range points {
avgX += schema.Float(xStart)
avgY += point
xStart++
2024-08-25 16:13:43 +02:00
if math.IsNaN(float64(point)) {
flag = 1
}
}
2024-08-25 16:13:43 +02:00
l := schema.Float(len(points))
2024-08-25 16:13:43 +02:00
avgX /= l
avgY /= l
2024-08-25 16:13:43 +02:00
if flag == 1 {
return avgX, schema.NaN
} else {
return avgX, avgY
}
}