I know, you WANT to get some function that represents this curve. Sorry, but you can't have one, at least not in the completely general case. But sometimes you get lucky, and you can have something almost as good. In this case, you got lucky.
You have a set of points that represent some space curve, a path the lies in the 3-d space with axes: (pres,temp,fc). Maybe you might call it a 1-manifold, embedded in that R^3 space.
The problem is, there is insufficient information to generate a viable model for that function. DON'T bother with 2-d polynomial models. Even if you did build a polynomial model, it would be a highly dangerous thing here.
Another thing that would be WRONG to do is to try to use a 2-d scattered data interpolant here (as you apparently tried). Yes, it failed, because those tools will try to build a triangulation of the domain pres X temp. I would hope that would indeed fail.
One option is to use a tool like my interparc , that will allow you to interpolate a general path in any number of dimensions, generating as many points along that path as you wish. interparc is on the file exchange. However, it does NOT give you any simple function that can be written down. Another option is to consider fc as being simply a function of pres, OR temp. Either of those variables progresses smoothly along that curve. So, you could simply plot fc versus pres. Use a spline to model that curve, or a simple cubic polynomial will suffice on this problem.
fc(pres) = 209.71 + -602.39*pres + 583.48*pres.^2 + -188.47*pres.^3
That additional variable (temp) is not necessary for any prediction, in fact the above polynomial model works quite nicely. We can get those coefficients simply as:
p3 = polyfit(pres,fc,3)
p3 =
-188.46991789119 583.477986094436 -602.392028565816 209.712804916545
plot(pres,polyval(p3,pres),'-r',pres,fc,'bo')
grid on
So you can think of temp as another variable that can be predicted from pres. But temp is NOT necessary to predict the value of fc.
In fact, if we look at the relationship between pres and temp, we see that temp can be VERY simply predicted as a function of the other.
plot(pres,temp,'o')
grid on
xlabel pres
ylabel temp
In fact, that relationship is virtually a perfectly linear one:
p1 = polyfit(pres,temp,1)
p1 =
600.000000000002 -311.800000000002
So we would have: