我使用contourf绘制3D矩阵中的值,但我希望在我的绘图中不显示特定的轮廓。
以下是我用来绘制所述矩阵的代码。
subplot(3,1,1)
contourf(squeeze(u(ja,ia,1)))
[Lu,mu] = contourf(squeeze(u(ja,ia,1)));
ou = mu.LevelStep;
mu.LevelStep = 0.2
clabel(Lu,mu)
title('Model run the u component')
colorbar
答案 0 :(得分:0)
您可以使用第二个输入参数指定要显示的轮廓contourf
:
contourf(rand(100)*10,[1,4,7,8]);
因此,您只需指定您想要的轮廓,并排除您不想要的轮廓。