x = contourf(:,1);
y = contourf(:,2);
z = contourf(:,3);
[X,Y] = meshgrid(x,y) ;
zg = griddata(x,y,z,X,Y) ;
[Cx, h] = contourf(X,Y,zg,15);
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!