I am trying to plot a 3D plot from somewhat weird data. Assume you have a function F(T,V) = a*T + b*V + c*V**2
, but those parameters in fact change for every T
. So my data file looks like this:
#T a b c
0 a1 b1 c1
1 a2 b2 c2
2 a3 b3 c3
...
(So, essentially, my function is parametrized in temperature T and volume V. But for every T that parametrization changes)
What I want to do is to plot this data, for example, but not necessarily, in a fenceplot like this.
My best attempt of achiving this is
F1(T,V) = T
F2(T,V) = V
F3(T,V) = V**2
set yrange [3:4]
splot infile u 1:y:($2*F1(x,y) + $3*F2(x,y) + $4*F3(x,y))
which is terribly wrong in numerous places, but should show best what I want to do...