mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2024-11-10 08:57:25 +01:00
26 lines
543 B
Go
26 lines
543 B
Go
|
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) {
|
||
|
|
||
|
for _, point := range points {
|
||
|
avgX += schema.Float(xStart)
|
||
|
avgY += point
|
||
|
xStart++
|
||
|
}
|
||
|
l := schema.Float(len(points))
|
||
|
avgX /= l
|
||
|
avgY /= l
|
||
|
return avgX, avgY
|
||
|
}
|