diff --git a/pkg/vcurve/vcurve.go b/pkg/vcurve/vcurve.go index 9ee5752..6be55db 100644 --- a/pkg/vcurve/vcurve.go +++ b/pkg/vcurve/vcurve.go @@ -10,3 +10,13 @@ type Point struct { type VCurve struct { Points []Point } + +// VCurveParams is a struct that holds the parameters for the V-curve model optisation and the data points. +type VCurveParams struct { + A float64 + B float64 + C float64 + D float64 + x []float64 + y []float64 +}