Interpolating data points in Excel

后端 未结 7 701
猫巷女王i
猫巷女王i 2021-01-31 19:19

I\'m sure this is the kind of problem other have solved many times before.

A group of people are going to do measurements (Home energy usage to be exact). All of them wi

7条回答
  •  礼貌的吻别
    2021-01-31 20:11

    alternatively.

    =INDEX(yVals,MATCH(J7,xVals,1))+(J7-MATCH(J7,xVals,1))*(INDEX(yVals,MATCH(J7,xVals,1)+1)-INDEX(yVals,MATCH(J7,xVals,1)))/(INDEX(xVals,MATCH(J7,xVals,1)+1)-MATCH(J7,xVals,1))
    

    where j7 is the x value.

    xvals is range of x values yvals is range of y values

    easier to put this into code.

提交回复
热议问题