I have the data set in relation z=f(x,y) where x and y are coordinate points and z are the values with respect to these points.I need to get the z values between the spaces from x and y values. I have tried by doing the interpolation, and still it gives me the almost same results. So, my question is how to get the overall 'z' distribution on the 'xy' surface. Thank you
[X,Y] = ndgrid(linspace(0,100,506),linspace(-85,85,2001));
Z = griddata(x(:),y(:),z(:),X,Y,'linear');