绘制填充轮廓中的最高点
大家好,有人可以帮我使用 Matlab 命令吗?我必须确定使用文件中的矩阵数据绘制的填充轮廓中的最高点。然后我必须用红色 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;
我知道它涉及 max 命令。当我使用 max
时不断出现错误。
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
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要绘制红色“X”,您必须首先调用
hold on
以确保第二个绘图命令不会擦除轮廓。然后,您使用plot(xMax,yMax,'xr')
在 z 处于最大值的 x/y 坐标处绘制红色“x”。要查找
xMax
和yMax
,您必须使用max
的第二个输出参数。 MAX 作为第一个输出返回最大值 (例如Z
),作为第二个输出,它返回最大元素的数量。使用该数字(索引)查找X
和Y
中与最大Z
值对应的元素,即xMax
和yMax
。To plot the red 'X', you have to call first
hold on
to 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
xMax
andyMax
, 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 inX
andY
that correspond to the maximumZ
-value, i.e.xMax
andyMax
.