given is data like the following:
A, B, C, Value
1, 2, 3, 123
5, 1, 4, 223
3, 4, 5, 444
And so on. I always have 3 index values, where I want to index my data with and the corresponding value that "sits at this point" in the 3D space.
What I want now, after passing my value set through some kind of Python, NumPy, SciPy magic is a function that takes the three parameters and interpolates in such a way that I can get any value I want within the cube, where the points are in, and even around it, of course with reduced precision when moving too far away from the points.
There are several interpolation methods in SciPy but the examples always generate some points using random values or some linear spacings. No examples with fixed data. Especially for the coordinates.
Which interpolation method(s) can be used for this and most important: How do I have to call them to get my fixed data in there?