MATLAB: Interpolate data around a point

interpolation

Hy guys , I have a matrix of data on a grid. P=45*25 matrix lat=45*25 matrix long=45*25 matrix and I want to interpolate this data around a point inside the grid. Someone could help me plese? Thank you very much in advance.

Best Answer

interp2(lat,long,P,____)
Related Question