leecavturbo
Well-known Member
- Joined
- Jan 4, 2008
- Messages
- 681
in this example below i need to work out what the divsor
would be for values inbetween the data?
.
would be for values inbetween the data?
.
It look like your situation is that you have input values in A and result values in B and C. And you want intermediate result values.
i.e. you would want the values of B and C for A=63?
If that is the case, linear interpolation would be my approach, even though the overall function is not linear.
So B = A * C and C is the input data?
What is the relationship between the columns? Which column holds "the divisor" and how is it obtained? Is it calculated or input by hand?
What do you want to find out?
We know that 200Mv yields 14.9 afr
Also 500Mv yields 14.7
(210 -200) / (500-200) = (answer - 14.9) / (14.7 - 14.9)
ans-14.9 = 210-200/500-200 * (14.7-1.49)
ans = 14.9 + ((210-200)/(500-200) * (14.7-14.9)) = 14.9 + (10/300*(-.2)) = 14.89333333
So, 210Mv yields 14.89 afr
In general if D1 contains a value between A3 and A4 then the corresponding result for column B would be
=B3+((B4-B3)*(D1-A3)/(A4-A3)).
Finding the right interval (between A2,A3 or A4,A5) will take more work.
no one?