I am trying to write a Mathematica script that can interpolate a discrete vector field to a continuous vector field. I then want to extract the integral curves (field lines) from the continuous vector field.
I know that Mathematica's ListStreamPlot function can visually present integral curves; however, I need the actual points that comprise them.
I have considered writing a brute-force method to the following effect: It seems that the integral curve could be determined recursively. If a point were picked in the list, then the "next" point in the integral curve would be that with the closest slope. (Each "point" is actually a vector, and thus each has its own slope.) There are only 4 candidates for the "next" point -- up, down, left, or right of the current point. The "next" point would then become the new starting point, and the process would recurse until the edge of the grid is reached.
However, I wonder if there is a simpler method using Mathematica's higher-level functions. (I also don't know if my method is even conceptually correct.)
I would really appreciate any thoughts or suggestions on this task.
Thanks!

