I want to estimate the value of the function $f(x,y)$ at a particular point. Suppose I am given two points, $(x_1,y_1)$ and $(x_2,y_2)$, along with the value of $f$ and its partial derivatives $f_x$ and $f_y$ at the two points.
Using cubic Hermite interpolation, I would like to find the value of any point $$(x_∗,y_∗)=(x_1 +t_∗(x_2 − x_1),y_1 +t_∗(y_2 − y_1))$$ where $t_∗$ parametrizes the line between the two points.
I have thought about the problem and wonder if it is possible to interpolate along the $x$-axis using the two points and the $x$-derivatives at both, do the same for $y$, and then somehow combine both answers to get the final answer?
EDIT: It appears as though using a directional derivative would be more appropriate.