Bounded Linear Interpolation
Bounded Linear Interpolation
(OP)
I have a table of data temperature/resistance data. For a given temperature, the measured x data is bounded by Xlow and Xhigh:
Y Xlow Xhigh
-30 155.2 199.6
-20 85.8 108.39
-10 49.2 61.4
For a measured value of X, what is the best linear interpolation technique to determine f(X)? My assumption is to use the average of Xlow and Xhigh and then do a standard interpolation using the table of Y vs Xavg.
Y Xlow Xhigh
-30 155.2 199.6
-20 85.8 108.39
-10 49.2 61.4
For a measured value of X, what is the best linear interpolation technique to determine f(X)? My assumption is to use the average of Xlow and Xhigh and then do a standard interpolation using the table of Y vs Xavg.





RE: Bounded Linear Interpolation
Supposing f(X) is your Y, what's the meaning of Xlow and Xhigh? Is this a domain of uncertainty, and, if so, why is it so wide?
If you only know that X is somewhere between Xlow and Xhigh, then your best guess for X is indeed the arithmetic average of Xlow and Xhigh, as you pointed out.
prex
motori@xcalcsREMOVE.com
http://www.xcalcs.com
Online tools for structural design
RE: Bounded Linear Interpolation
Linear - you mean a straight line, I presume, and no curve.
Else, Spline, Bezier etc become relevant too.
RE: Bounded Linear Interpolation
RE Tigrek: I agree with the other methods, but the direction is to use Linear Interpolation. I was wondering if there was a way to use the bounded data to reduce the error in the interpolation techique.
Thanks to all.