MATLAB: 2d surface plot matlab

2d surfinterpolantmeshsurf

I have x1,y1,z1…. xn,yn,zn.. and at each point I have the resultant value measured by experiment. Now for each plane I want to plot a surface plot. image of scatter3 with gridpoints is attached. scatter3 gives me 3d grid.
if
scatter3(x, y,z,20,resultantvalue);
end

Best Answer

Maybe the function griddata() does the job?
Related Question