I'm strugling to convert some MATLAB code into Julia. I have some 3D gridded data (temperature that varies bi-dimensionally and over time) and want to change from a (x,y,t) mesh to a more loose (xi,yi,ti) mesh. In MATLAB it would be a simple interp(x,y,t,T,xi,yi,ti)
.
I tried using Interpolations
, Dierckx
, but both seemed to work only over 2D gridded data. Am I getting something wrong? I'm quite new in Julia programing...
I'm already considering the possibility of solving the problem via PyCall
with some NumPy/SciPy
funtion.
Thanks!