今天刚学的,做了一道练习题,不知道为什么有一块显示不出该有颜色以及标签。
以上是标答图
x=-2:0.1:2;
y=-2:0.1:2;
[X,Y]=meshgrid(x,y);
Z=X.*exp(-X.^2-Y.^2);
mesh(X,Y,Z);
contourf(Z);
hold on;
contour(Z,[-0.5:0.05:0.5]);
[c,h]=contour(Z);
clabel(c,h);
set(gca,'XTick',0:10:40,'XTickLabel',-2:1:2);
set(gca,'YTick',0:5:40,'YTickLabel',-2:0.5:2);
colormap(jet);
hold off;
axis square;
很明显,这个等高线最外边应该是0.5,可是没有显示,且颜色也和背景相同。