调整ezcontourf()的级别

时间:2015-04-01 11:36:33

标签: matlab

我遇到一些应该很容易的困难。

我正在使用ezcontourf()函数绘制几个轮廓。我希望每个绘图的颜色比例相同,以便比较结果。

我在同一文档中使用了contourf(),只需使用'LevelList',custom_levels,其中custom_levels是一个带有关卡数据的向量。

但是,ezcontourf()不喜欢这个,我似乎也不能使用h = ezcontourf()。任何帮助将不胜感激!

wcr = fun(x,y)
figure
ezcontourf(wcr,[0, 250, 0, 250]);

1 个答案:

答案 0 :(得分:0)

所以解决方案是使用caxis([min max])!供将来参考。