Hi can somebody help me with the Matlab command here. I’ve got to determine the highest point in a filled contour I’ve plotted using matrix data in a file. And then I have to mark the highest point with a red x.
load('0101862_mod.dtm') % loading the dtm file
X = X0101862_mod(1:81,:) % we name X0101862, it is the location where the data X, Y and Z is stored
Y = X0101862_mod(82:162,:)
Z = X0101862_mod (163:243,:)
figure (1)
subplot(2,2,3)
[C,h] = contourf(X,Y,Z,10);
xlabel('x'); ylabel('y'); zlabel('z'); title('X0101862_mod');
view(-73,34); axis equal; colormap summer; colorbar;
i know it involves max command. Kept getting error when i use max.
To plot the red ‘X’, you have to call first
hold onto make sure that the second plotting command won’t erase the contour. Then, you useplot(xMax,yMax,'xr')to plot a red ‘x’ at the x/y coordinates where z is at its maximum.To find
xMaxandyMax, you have to use the second output argument ofmax. MAX returns, as first output, the maximum (e.g. ofZ), and as a second output, it returns the number of the element that is maximal. Use that number (the index) to find the elements inXandYthat correspond to the maximumZ-value, i.e.xMaxandyMax.