Assume I have a vector field sampled in discrete points. For simplicity let us assume it is sampled regularly on a Cartesian grid. I want to estimate flow lines through various points in this vector field. I.e. trajectories "along" the vector field. Say that I also know at least one point I want the flow line to pass through. How can one do this?
One approach which seems nice to me is to approximate with a polynomial, as some kind of a Taylor polynomial. However I suppose this would be a $\mathbb{R} \rightarrow \mathbb{R}^2$ polynomial as it should be parameterizable by just one real value. So trying to estimate $P_x(t),P_y(t)$ where $P_x$ and $P_y$ are polynomials of some degree. It seems like a reasonable approach to me, but I'm very curious of how you guys would approach the problem.