I want to interpolate this cloud of 3D points:
I looked at scipy.interpolate.griddata, and the result is exactly what I need, but as I understand it, I need to enter "griddata", which means something like x = [[0,0,0],[1,1,1],[2,2,2]] .
But my 3D point cloud does not have this kind of grid. The x, y values โโdo not behave like a grid. In any case, for each x, y-value, there is only one z-value. *
So, is there an alternative to scipy.interpolate.griddata for my no-in-grid-point-cloud?
* Editing: โNo gridโ means my input looks like this:
x = [0,4,17] y = [-7,25,116] z = [50,112,47]
python scipy interpolation
Munchkin
source share