I am stuck with a little problem:
Based on the following
If X=25 then Y=15
if X=100 then Y = 170
What would be the equation to find the Y value based on any given X ?
Thank you
I looked for linear interpolation on google and found the following equation that seems to work well: Y = ( ( X - X1 )( Y2 - Y1) / ( X2 - X1) ) + Y1
seems to work well: Y = (X - X1) (Y2 - Y1) / (X2 - X1) + Y1