I have two arrays of Float64: arr_x
and arr_y
. I have a 2D array arr_z
storing some function z(x,y) computed on the set of points (x,y) with x
in arr_x
, y
in arr_y
.
How can I do a 2D interpolation of arr_z
using arr_x
and arr_y
? That is, I would like a function itp_z(x,y)
which does the equivalent of linear interpolation but now in 2D on the array arr_z.