I'm currently studying numerical methods with python, and i've got a problem with the implementation of some mathematical logic. Suppose i have a table:
data:
x = 0 x = 2 x = 4
_______________________________
y = 0 | 100.0 90.0 80.0
y = 2 | 85.0 64.49 53.50
y = 4 | 70 48. 90 38.43
out of this data, how can i predict the value when x = 4 and y = 3.5 ?
I just need to predict the value within the range of data in the table. How can I do this? Any suggestions will be much appreciated.. thanks :)