A "discrete" contour plot

5 次查看(过去 30 天)
Brooke
Brooke 2012-4-15
If M(i,j) is a matrix,
How might I plot a contour plot where the (i,j) point on the x,y-plane has altitude M(i,j)?
What I did was
  x = 1:1:imax;
y = 1:1:jmax;
 
[x,y] = meshgrid(x,y);
z=M;
[c,h] = contour(x,y,z,100);
clabel(c,h,'manual');
But it doesn't seem to be right…
(If the plotting bit is right, then there must be something else the wrong with the program!)
  1 个评论
Walter Roberson
Walter Roberson 2012-4-15
It isn't a good idea to overwrite x and y with meshgrid(x,y), in the sense that it is confusing to the reader.

请先登录,再进行评论。

回答(1 个)

Wayne King
Wayne King 2012-4-15
When you say "discrete" contour plot, do you mean something like
z = abs(round(peaks(5)));
bar3(z,0.3);
  1 个评论
Brooke
Brooke 2012-4-15
@Wayne: No, I just meant that the "data points" are given at discrete points. Sorry about the ambiguity... Nice bar chart, btw.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Line Plots 的更多信息

标签

产品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by