MATLAB: How to create a contour map with the data coordinat and data elevation

how to make contur map

if true
% code
end

Best Answer

data = importdata('pengolahan.txt') ;
n = data(:,1) ; % serial no.
x = data(:,2) ;
y = data(:,3) ;
z = data(:,4) ;
tri = delaunay(x,y) ;
trisurf(tri,x,y,z);
colorbar
shading interp ;
Related Question