
Bradford T. answered 01/04/21
MS in Electrical Engineering with 40+ years as an Engineer
I don't know if this will help or not, but I made the slope and y intercept of each of your linear equations functions, f(z) and g(z)
y = f(z)x + g(z)
I then did a least squares line fit for both f(z) and g(z) to fit the slopes and y-intercepts.
f(z) = az +b
g(z) = cz + d
y = f(z)x + g(z)
f(z) = -0.08z + 8.932
g(z) = -0.0000718z + 0.0062
This is just an approximation. Might use a cubic spline fit for closer approximation instead of a line fit.
I hope this helps.